This commit is contained in:
m3tam3re
2024-12-06 07:16:50 +01:00
parent 50332e55e8
commit 12a3620712
17 changed files with 637 additions and 3 deletions

View File

@ -0,0 +1,34 @@
{
imports = [
./containers
./n8n.nix
./postgres.nix
./restic.nix
./sound.nix
./udev.nix
#./wireguard.nix
];
services = {
hypridle.enable = true;
printing.enable = true;
gvfs.enable = true;
trezord.enable = true;
gnome.gnome-keyring.enable = true;
qdrant.enable = true;
avahi = {
enable = true;
nssmdns4 = true;
publish = {
addresses = true;
workstation = true;
userServices = true;
};
};
};
systemd.sleep.extraConfig = ''
AllowSuspend=no
AllowHibernation=no
AllowHybridSleep=no
AllowSuspendThenHibernate=no
'';
}