alqueva/hosts/micronix/users.nix
2024-12-11 00:38:34 -03:00

30 lines
486 B
Nix

{pkgs, ...}: {
alqueva.users.xmm = {
packages = builtins.attrValues {
inherit
(pkgs)
wget2
fastfetch
emacs30-pgtk
alacritty
firefox
ffmpeg-full
vesktop
;
};
groups = [
"users"
"wheel"
"video"
"audio"
"networkmanager"
"input"
"libvirtd"
];
};
services.emacs = {
enable = true;
defaultEditor = true;
startWithGraphical = true;
};
}