2024-10-20 00:30:58 +02:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./containers
|
|
|
|
./n8n.nix
|
2024-11-13 10:51:59 +01:00
|
|
|
./postgres.nix
|
2024-10-20 00:30:58 +02:00
|
|
|
./sound.nix
|
|
|
|
./udev.nix
|
2024-11-14 12:17:43 +01:00
|
|
|
./wireguard.nix
|
2024-10-20 00:30:58 +02:00
|
|
|
];
|
|
|
|
services = {
|
|
|
|
hypridle.enable = true;
|
|
|
|
printing.enable = true;
|
|
|
|
gvfs.enable = true;
|
2025-02-21 14:07:29 +01:00
|
|
|
tailscale.enable = true;
|
2024-10-20 00:30:58 +02:00
|
|
|
trezord.enable = true;
|
|
|
|
gnome.gnome-keyring.enable = true;
|
2024-11-14 12:17:43 +01:00
|
|
|
qdrant.enable = true;
|
2024-10-20 00:30:58 +02:00
|
|
|
avahi = {
|
|
|
|
enable = true;
|
|
|
|
nssmdns4 = true;
|
|
|
|
publish = {
|
|
|
|
addresses = true;
|
|
|
|
workstation = true;
|
|
|
|
userServices = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
systemd.sleep.extraConfig = ''
|
|
|
|
AllowSuspend=no
|
|
|
|
AllowHibernation=no
|
|
|
|
AllowHybridSleep=no
|
|
|
|
AllowSuspendThenHibernate=no
|
|
|
|
'';
|
|
|
|
}
|