diff --git a/hosts/tyr/configuration.nix b/hosts/tyr/configuration.nix index 19b3407..cd11d75 100644 --- a/hosts/tyr/configuration.nix +++ b/hosts/tyr/configuration.nix @@ -134,18 +134,6 @@ # Enable my specific settings crony.secrets.enable = true; - # Optimise storage - nix.optimise = { - automatic = true; - dates = "weekly"; - }; - - nix.gc = { - automatic = true; - dates = "weekly"; - options = "--delete-older-than 10d"; - }; - # setup podman for virtualisation virtualisation = { podman = { diff --git a/modules/servers/tyr/default.nix b/modules/servers/tyr/default.nix new file mode 100644 index 0000000..a4bbeb2 --- /dev/null +++ b/modules/servers/tyr/default.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ./syncthing.nix + ]; +} diff --git a/modules/servers/tyr/syncthing.nix b/modules/servers/tyr/syncthing.nix new file mode 100644 index 0000000..2ab81c9 --- /dev/null +++ b/modules/servers/tyr/syncthing.nix @@ -0,0 +1,5 @@ +{ + services.syncthing = { + enable = true; + }; +}