summaryrefslogtreecommitdiff
path: root/modules/hosts/tiamat/tiamat.nix
diff options
context:
space:
mode:
authorscouckel <james.krinsky@gmail.com>2026-03-27 22:50:29 -0400
committerscouckel <james.krinsky@gmail.com>2026-03-27 22:50:29 -0400
commit8b084aa2f4952d2a95151379dede98ede8a3128b (patch)
treee22740fe5606bb5a211c5ee3e8ca0f40e74e1334 /modules/hosts/tiamat/tiamat.nix
parentc378b84c9e33ae6e0f9570874b688638fbd0bcbb (diff)
movement to fully dendritic
Diffstat (limited to 'modules/hosts/tiamat/tiamat.nix')
-rw-r--r--modules/hosts/tiamat/tiamat.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/hosts/tiamat/tiamat.nix b/modules/hosts/tiamat/tiamat.nix
index e69de29..3ff764b 100644
--- a/modules/hosts/tiamat/tiamat.nix
+++ b/modules/hosts/tiamat/tiamat.nix
@@ -0,0 +1,19 @@
+{ inputs, self, ... }:
+
+{
+ flake.nixosConfigurations.tiamat = inputs.nixpkgs.lib.nixosSystem {
+ modules = [
+ self.nixosModules.tiamat
+ self.nixosModules.tiamatHardware
+
+ self.nixosModules.createHost
+ ];
+ };
+
+ flake.nixosModules.tiamat = { pkgs, ... }: {
+ jcklib.createHost = {
+ hostName = "tiamat";
+ userName = "jck";
+ };
+ };
+}