Compare commits

...

1 Commits

@ -91,7 +91,8 @@
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs_unstable": "nixpkgs_unstable", "nixpkgs_unstable": "nixpkgs_unstable",
"secrix": "secrix" "secrix": "secrix",
"secrix_unstable": "secrix_unstable"
} }
}, },
"secrix": { "secrix": {
@ -113,6 +114,26 @@
"repo": "secrix", "repo": "secrix",
"type": "github" "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", "root": "root",

@ -22,6 +22,12 @@
# required for configs # required for configs
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; 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"; 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