summaryrefslogtreecommitdiff
path: root/hosts/tomato/default.nix
diff options
context:
space:
mode:
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";
+}