add ardour and remove kde on desktop1
All checks were successful
nixos config pipeline / show-flake (push) Successful in 31s
nixos config pipeline / deploy (push) Successful in 1m21s

This commit is contained in:
smayzy 2026-03-29 11:19:14 +02:00
parent 8956d1790e
commit fd8e52d6d6
4 changed files with 12 additions and 1 deletions

View File

@ -24,6 +24,7 @@
"wheel" "wheel"
"wireshark" "wireshark"
"dialout" "dialout"
"audio"
]; ];
}; };

View File

@ -57,12 +57,20 @@
depends = [ "/home" ]; depends = [ "/home" ];
}; };
security.pam.loginLimits = [
{
domain = "@audio";
type = "-";
item = "memlock";
value = "unlimited";
}
];
smayzy = { smayzy = {
desktop.enable = true; desktop.enable = true;
nvidia.enable = true; nvidia.enable = true;
virt.enable = true; virt.enable = true;
hyprland.enable = true; hyprland.enable = true;
kde.enable = true;
docker.enable = true; docker.enable = true;
containers = { containers = {
nixos = { nixos = {

View File

@ -17,6 +17,7 @@ in
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
jack.enable = true;
}; };
}; };
} }

View File

@ -57,6 +57,7 @@ in
qbittorrent qbittorrent
android-tools android-tools
gdb gdb
ardour
]; ];
}; };
} }