Add users and fonts

This commit is contained in:
xmm16 2024-12-10 20:16:42 -03:00
commit 1cc397b7e5
No known key found for this signature in database
2 changed files with 32 additions and 10 deletions

26
hosts/micronix/users.nix Normal file
View 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"
];
};
}