diff options
Diffstat (limited to 'modules/hosts/tiamat/tiamat.nix')
| -rw-r--r-- | modules/hosts/tiamat/tiamat.nix | 19 |
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"; + }; + }; +} |
