Everybody go to Lix
This commit is contained in:
parent
73cc48d01d
commit
a7582aee2e
15
flake.nix
15
flake.nix
|
@ -20,6 +20,17 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
};
|
||||
|
||||
# Use Lix instead of Nix
|
||||
lix-module-unstable = {
|
||||
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0.tar.gz";
|
||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
};
|
||||
|
||||
lix-module-stable = {
|
||||
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0.tar.gz";
|
||||
inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
};
|
||||
|
||||
extra-config.url = "git+ssh://git@git.sr.ht/~dala/extra-config";
|
||||
};
|
||||
|
||||
|
@ -32,6 +43,8 @@
|
|||
sops-nix,
|
||||
flake-utils,
|
||||
extra-config,
|
||||
lix-module-unstable,
|
||||
lix-module-stable,
|
||||
}:
|
||||
let
|
||||
machines = import ./machines.nix;
|
||||
|
@ -41,6 +54,7 @@
|
|||
name: value:
|
||||
let
|
||||
nixpkgs = if value.nixpkgsUnstable then nixpkgs-unstable else nixpkgs-stable;
|
||||
lix-module = if value.nixpkgsUnstable then lix-module-unstable else lix-module-stable;
|
||||
in
|
||||
nixpkgs.lib.nixosSystem {
|
||||
system = value.system;
|
||||
|
@ -66,6 +80,7 @@
|
|||
{ }
|
||||
)
|
||||
sops-nix.nixosModules.sops
|
||||
lix-module.nixosModules.default
|
||||
];
|
||||
}
|
||||
) machines;
|
||||
|
|
Loading…
Reference in a new issue