From b6bcc6af673b2bb3ce40e04349be200cd354eece Mon Sep 17 00:00:00 2001 From: Simon Parri Date: Tue, 3 Jun 2025 15:25:18 -0500 Subject: hosts/tomato: Add initial configuration --- hosts/tomato/default.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 hosts/tomato/default.nix (limited to 'hosts/tomato/default.nix') 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"; +} -- cgit v1.2.3