37 lines
695 B
Nix
Raw Permalink Normal View History

2024-12-06 07:16:50 +01:00
{
imports = [
./containers
2025-01-28 09:09:17 +01:00
#./n8n.nix
2024-12-06 07:16:50 +01:00
./postgres.nix
./restic.nix
./sound.nix
2025-02-23 19:07:14 +01:00
./tailscale.nix
2024-12-06 07:16:50 +01:00
./udev.nix
2025-02-23 19:07:14 +01:00
./wireguard.nix
2024-12-06 07:16:50 +01:00
];
services = {
hypridle.enable = true;
printing.enable = true;
gvfs.enable = true;
trezord.enable = true;
gnome.gnome-keyring.enable = true;
qdrant.enable = true;
2024-12-10 10:23:05 +01:00
upower.enable = true;
2024-12-06 07:16:50 +01:00
avahi = {
enable = true;
nssmdns4 = true;
publish = {
addresses = true;
workstation = true;
userServices = true;
};
};
};
systemd.sleep.extraConfig = ''
AllowSuspend=no
AllowHibernation=no
AllowHybridSleep=no
AllowSuspendThenHibernate=no
'';
}