flake: update lock; change all configInputs.inputs to configInputs

This commit is contained in:
2024-03-02 19:51:38 +01:00
parent a7ad639465
commit c5a5265557
6 changed files with 38 additions and 38 deletions
+2 -2
View File
@@ -6,13 +6,13 @@ let
makeSystem = { host, arch ? "x86_64-linux", extraModules ? [ ], stable ? true }:
let
nixosSystem = if stable then inputs.nixpkgs-stable.lib.nixosSystem else inputs.nixpkgs.lib.nixosSystem;
hm = if stable then inputs.configInputs-stable.inputs.home-manager else inputs.configInputs.inputs.home-manager;
hm = if stable then inputs.configInputs-stable.home-manager else inputs.configInputs.home-manager;
materusCfg = {
inherit stable;
inherit materusFlake;
inherit host;
inherit hm;
nixerus = if stable then inputs.configInputs-stable.inputs.nixerus else inputs.configInputs.inputs.nixerus;
nixerus = if stable then inputs.configInputs-stable.nixerus else inputs.configInputs.nixerus;
configInputs = if stable then inputs.configInputs-stable else inputs.configInputs;
path = materusFlake.selfPath;
isHm = false;
+1 -1
View File
@@ -2,7 +2,7 @@
{
imports = [
materusCfg.configInputs.inputs.nixos-hardware.nixosModules.raspberry-pi-4
materusCfg.configInputs.nixos-hardware.nixosModules.raspberry-pi-4
./configuration.nix
];
}