Add users and fonts
This commit is contained in:
parent
77709ea2bc
commit
1cc397b7e5
2 changed files with 32 additions and 10 deletions
|
@ -1,20 +1,16 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
alqueva.fonts = {
|
alqueva.fonts = {
|
||||||
names = {
|
names = {
|
||||||
sansSerif = ["Inter"];
|
sansSerif = ["Liberation Sans"];
|
||||||
monospace = ["Maple Mono"];
|
monospace = ["JetBrainsMono Nerd Font"];
|
||||||
serif = ["ETBembo"];
|
serif = ["Liberation Serif"];
|
||||||
emoji = ["OpenMoji Color"];
|
emoji = ["OpenMoji Color"];
|
||||||
};
|
};
|
||||||
packages = {
|
packages = {
|
||||||
sansSerif = [pkgs.inter];
|
sansSerif = [pkgs.liberation_ttf];
|
||||||
monospace = [pkgs.maple-mono];
|
monospace = [pkgs.nerd-fonts.jetbrains-mono];
|
||||||
serif = [pkgs.source-serif-pro pkgs.etBook];
|
serif = [pkgs.liberation_ttf];
|
||||||
emoji = [pkgs.openmoji-color];
|
emoji = [pkgs.openmoji-color];
|
||||||
extra = [
|
|
||||||
pkgs.source-han-sans
|
|
||||||
pkgs.nerd-fonts.symbols-only
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
26
hosts/micronix/users.nix
Normal file
26
hosts/micronix/users.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
alqueva.users.xmm = {
|
||||||
|
packages = builtins.attrValues {
|
||||||
|
inherit
|
||||||
|
(pkgs)
|
||||||
|
wget2
|
||||||
|
vesktop
|
||||||
|
mpv
|
||||||
|
imv
|
||||||
|
;
|
||||||
|
};
|
||||||
|
groups = [
|
||||||
|
"users"
|
||||||
|
"wheel"
|
||||||
|
"video"
|
||||||
|
"audio"
|
||||||
|
"networkmanager"
|
||||||
|
"input"
|
||||||
|
"libvirtd"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue