36 lines
629 B
Nix
36 lines
629 B
Nix
{pkgs, ...}: {
|
|
alqueva.users.xmm = {
|
|
packages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
wget2
|
|
fastfetch
|
|
btop-rocm
|
|
emacs30-pgtk
|
|
alacritty
|
|
firefox_nightly
|
|
ffmpeg-full
|
|
vesktop
|
|
noto-fonts
|
|
noto-fonts-lgc-plus
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-cjk-serif
|
|
niri
|
|
;
|
|
};
|
|
groups = [
|
|
"users"
|
|
"wheel"
|
|
"video"
|
|
"audio"
|
|
"networkmanager"
|
|
"input"
|
|
"libvirtd"
|
|
];
|
|
};
|
|
services.emacs = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
startWithGraphical = true;
|
|
};
|
|
}
|