Upgrade stratus and installer to 24.11

This commit is contained in:
SebastianStork 2024-12-09 20:38:15 +01:00
parent 3d96239b5d
commit 7120414c5a
4 changed files with 6 additions and 24 deletions

View file

@ -5,8 +5,8 @@
...
}:
let
unstable = inputs.nixpkgs;
stable = inputs.nixpkgs-stable;
stable = inputs.nixpkgs;
# unstable = inputs.nixpkgs-unstable;
mkHost = hostname: nixpkgs: {
${hostname} = nixpkgs.lib.nixosSystem {
@ -29,8 +29,8 @@ in
{
flake = {
nixosConfigurations = lib.mkMerge [
(mkHost "north" unstable)
(mkHost "inspiron" unstable)
(mkHost "north" stable)
(mkHost "inspiron" stable)
(mkHost "stratus" stable)
(mkHost "installer" stable)
];