secrix-issue25
Felix Stupp 1 year ago
parent 169fb7712a
commit fff0c9a8a7
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -91,7 +91,8 @@
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs",
"nixpkgs_unstable": "nixpkgs_unstable",
"secrix": "secrix"
"secrix": "secrix",
"secrix_unstable": "secrix_unstable"
}
},
"secrix": {
@ -113,6 +114,26 @@
"repo": "secrix",
"type": "github"
}
},
"secrix_unstable": {
"inputs": {
"nixpkgs": [
"nixpkgs_unstable"
]
},
"locked": {
"lastModified": 1718983551,
"narHash": "sha256-JOX1quPQEHyzWfeZvI2ZtNPJ5zPP9vMuSO4W+/AawT0=",
"owner": "Platonic-Systems",
"repo": "secrix",
"rev": "59bdb737fac787278b80069dad48ba90ace42bfc",
"type": "github"
},
"original": {
"owner": "Platonic-Systems",
"repo": "secrix",
"type": "github"
}
}
},
"root": "root",

@ -22,6 +22,12 @@
# required for configs
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
# for debugging only
secrix_unstable = {
url = "github:Platonic-Systems/secrix";
inputs.nixpkgs.follows = "nixpkgs_unstable";
};
};
@ -111,6 +117,55 @@
system = "x86_64-linux";
};
# configs for https://github.com/Platonic-Systems/secrix/issues/25
"secrix_issue25" = inputs.nixpkgs.lib.nixosSystem {
modules = [
inputs.secrix.nixosModules.secrix
{
boot.loader.grub.enable = false;
fileSystems."/".device = "/dev/null";
networking.hostName = "test";
system.stateVersion = "24.05";
documentation.nixos.enable = true;
documentation.nixos.includeAllModules = true;
}
];
system = "x86_64-linux";
};
"secrix_issue25_working" = inputs.nixpkgs.lib.nixosSystem {
modules = [
inputs.secrix.nixosModules.secrix
{
boot.loader.grub.enable = false;
fileSystems."/".device = "/dev/null";
networking.hostName = "test";
system.stateVersion = "24.05";
documentation.nixos.enable = true;
documentation.nixos.includeAllModules = false; # <-- THIS
}
];
system = "x86_64-linux";
};
"secrix_issue25_unstable" = inputs.nixpkgs_unstable.lib.nixosSystem {
modules = [
inputs.secrix_unstable.nixosModules.secrix
{
boot.loader.grub.enable = false;
fileSystems."/".device = "/dev/null";
networking.hostName = "test";
system.stateVersion = "24.05";
documentation.nixos.enable = true;
documentation.nixos.includeAllModules = true;
}
];
system = "x86_64-linux";
};
};

Loading…
Cancel
Save