From 95391fc713ea5f31b114a3e5ecd56897dab27c0a Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:31:56 -0500 Subject: [PATCH] started janus config --- modules/hosts/janus.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 modules/hosts/janus.nix diff --git a/modules/hosts/janus.nix b/modules/hosts/janus.nix new file mode 100644 index 0000000..ab9ee77 --- /dev/null +++ b/modules/hosts/janus.nix @@ -0,0 +1,25 @@ +{ inputs, ... }: +let + hostname = "janus"; + username ="john"; +in +{ + flake.modules.nixos."${hostname}" = { pkgs, ... }: { + imports = [ + inputs.self.modules.nixos.lxc + inputs.self.modules.nixos."${username}" + ]; + home-manager.users."${username}" = { + imports = [ + # inputs.self.homeModules."${username}" + ]; + }; + }; + + flake.nixosConfigurations."${hostname}" = inputs.nixpkgs.lib.nixosSystem { + modules = [ + inputs.self.modules.nixos."${hostname}" + inputs.home-manager.nixosModules.home-manager + ]; + }; +} \ No newline at end of file