summaryrefslogtreecommitdiff
path: root/hosts/tomato/default.nix
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-06-03 15:25:18 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-06-03 15:25:18 -0500
commitb6bcc6af673b2bb3ce40e04349be200cd354eece (patch)
treea3f816dccb3750570ff30fa53a9a1ffeee5c2a5a /hosts/tomato/default.nix
parent68e4c11e036856583cbe02fd839eefedb9f8a23e (diff)
downloadnixos-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.nix32
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";
+}