flake.nix: add func to build using nixpkgs unstable

This commit is contained in:
Oystein Kristoffer Tveit 2023-07-10 00:02:01 +02:00 committed by h7x4
parent 34a16149f8
commit bb9f1c8b2f
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 11 additions and 5 deletions

View File

@ -20,7 +20,7 @@
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
in {
nixosConfigurations = let
nixosConfig = name: config: nixpkgs.lib.nixosSystem (nixpkgs.lib.recursiveUpdate
nixosConfig = nixpkgs: name: config: nixpkgs.lib.nixosSystem (nixpkgs.lib.recursiveUpdate
rec {
system = "x86_64-linux";
specialArgs = {
@ -45,8 +45,10 @@
config
);
stableNixosConfig = nixosConfig nixpkgs;
unstableNixosConfig = nixosConfig unstable;
in {
bicep = nixosConfig "bicep" {
bicep = stableNixosConfig "bicep" {
modules = [
./hosts/bicep/configuration.nix
sops-nix.nixosModules.sops
@ -54,9 +56,13 @@
matrix-next.nixosModules.synapse
];
};
bekkalokk = nixosConfig "bekkalokk" { };
# greddost = nixosConfig "greddost" { };
ildkule = nixosConfig "ildkule" { };
bekkalokk = stableNixosConfig "bekkalokk" { };
greddost = stableNixosConfig "greddost" { };
ildkule = stableNixosConfig "ildkule" { };
ildkule-unstable = unstableNixosConfig "ildkule" { };
jokum = stableNixosConfig "jokum" {
modules = [ matrix-next.nixosModules.synapse ];
};
};
devShells = forAllSystems (system: {