Add redshirt to flake

This commit is contained in:
Felix Albrigtsen 2023-03-01 12:29:05 +01:00
parent 4c2c74da89
commit 16f7a6939e
2 changed files with 10 additions and 0 deletions

View File

@ -24,6 +24,15 @@
./hosts/chapel/configuration.nix ./hosts/chapel/configuration.nix
]; ];
}; };
redshirt = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
};
modules = [
./hosts/chapel/configuration.nix
];
};
}; };
}; };
} }

View File

@ -46,6 +46,7 @@
jack.enable = true; jack.enable = true;
}; };
# TODO: Enable home-manager with config from ./home.nix instead of users.users
users.users.felixalb = { users.users.felixalb = {
extraGroups = [ "networkmanager" ]; extraGroups = [ "networkmanager" ];
shell = pkgs.zsh; shell = pkgs.zsh;