From 16f7a6939e9db957b9fd1668dff47bb9ba7bd32b Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Wed, 1 Mar 2023 12:29:05 +0100 Subject: [PATCH] Add redshirt to flake --- flake.nix | 9 +++++++++ hosts/redshirt/configuration.nix | 1 + 2 files changed, 10 insertions(+) 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;