diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-06-03 15:25:18 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-06-03 15:25:18 -0500 |
commit | b6bcc6af673b2bb3ce40e04349be200cd354eece (patch) | |
tree | a3f816dccb3750570ff30fa53a9a1ffeee5c2a5a /hosts/tomato/default.nix | |
parent | 68e4c11e036856583cbe02fd839eefedb9f8a23e (diff) | |
download | nixos-config-b6bcc6af673b2bb3ce40e04349be200cd354eece.tar.gz nixos-config-b6bcc6af673b2bb3ce40e04349be200cd354eece.zip |
hosts/tomato: Add initial configuration
Diffstat (limited to 'hosts/tomato/default.nix')
-rw-r--r-- | hosts/tomato/default.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/hosts/tomato/default.nix b/hosts/tomato/default.nix new file mode 100644 index 0000000..623e81a --- /dev/null +++ b/hosts/tomato/default.nix @@ -0,0 +1,32 @@ +{ ... }: + +{ + imports = [ + ./hardware.nix + ./packages.nix + ]; + + this.main.enable = true; + this.laptop.enable = true; + + networking.domain = "alef.zoar.cx"; + + this.locales = { + default = "us"; + extra = ["it" "jp"]; + dictionaries.extra = ["grc" "la"]; + }; + + time.timeZone = "America/Chicago"; + + this.users.enabled = ["simon"]; + + services.printing.enable = true; + + this.hosts = { + lan.home = true; + mine = true; + }; + + system.stateVersion = "24.11"; +} |