diff options
Diffstat (limited to 'hosts/radish/default.nix')
-rw-r--r-- | hosts/radish/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/hosts/radish/default.nix b/hosts/radish/default.nix new file mode 100644 index 0000000..9a60764 --- /dev/null +++ b/hosts/radish/default.nix @@ -0,0 +1,26 @@ +{ lib, ... }: + +{ + imports = [ + ./packages.nix + ]; + + boot.isContainer = true; + + networking.domain = "alef.zoar.cx"; + time.timeZone = "America/Chicago"; + this.locales.default = "us"; + this.locales.dictionaries.enable = true; + + this.buildMachines = ["pinto"]; + + this.hosts = { + lan.home = true; + mine = true; + yggdrasil.public = true; + yggdrasil.private = true; + }; + services.yggdrasil.enable = lib.mkForce false; + + system.stateVersion = "24.11"; +} |