diff --git a/flake.nix b/flake.nix index 7199732..a15f571 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,15 @@ ./hosts/chapel/configuration.nix ]; }; + redshirt = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { + inherit inputs; + }; + modules = [ + ./hosts/chapel/configuration.nix + ]; + }; }; }; } diff --git a/hosts/redshirt/configuration.nix b/hosts/redshirt/configuration.nix index 1818aeb..ff3d8d8 100644 --- a/hosts/redshirt/configuration.nix +++ b/hosts/redshirt/configuration.nix @@ -46,6 +46,7 @@ jack.enable = true; }; + # TODO: Enable home-manager with config from ./home.nix instead of users.users users.users.felixalb = { extraGroups = [ "networkmanager" ]; shell = pkgs.zsh;