alqueva/hosts/micronix/users.nix

37 lines
629 B
Nix
Raw Normal View History

2024-12-10 23:36:48 -03:00
{pkgs, ...}: {
2024-12-10 20:16:42 -03:00
alqueva.users.xmm = {
packages = builtins.attrValues {
inherit
(pkgs)
wget2
2024-12-11 00:38:34 -03:00
fastfetch
2024-12-12 11:54:20 -03:00
btop-rocm
2024-12-11 00:07:40 -03:00
emacs30-pgtk
2024-12-10 23:09:44 -03:00
alacritty
2024-12-11 00:40:53 -03:00
firefox_nightly
2024-12-11 00:38:34 -03:00
ffmpeg-full
2024-12-10 20:16:42 -03:00
vesktop
2024-12-12 11:54:20 -03:00
noto-fonts
noto-fonts-lgc-plus
noto-fonts-cjk-sans
noto-fonts-cjk-serif
niri
2024-12-10 20:16:42 -03:00
;
};
groups = [
"users"
"wheel"
"video"
"audio"
"networkmanager"
"input"
"libvirtd"
];
};
2024-12-11 00:07:40 -03:00
services.emacs = {
enable = true;
defaultEditor = true;
startWithGraphical = true;
};
2024-12-10 20:16:42 -03:00
}