add lix to artemision
Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 9m33s
Check Nix flake / Perform Nix flake checks (pull_request) Failing after 14m4s

This commit is contained in:
2025-07-04 01:45:07 -04:00
parent 8198a5be3b
commit 40065f6198
4 changed files with 67 additions and 0 deletions

View File

@ -156,6 +156,7 @@ rec {
modules ? [ ],
server ? true,
sops ? true,
lix ? false,
system ? "x86_64-linux",
}@args:
lib.nixosSystem {
@ -180,6 +181,7 @@ rec {
++ genWrapper sops genSops args
++ genWrapper home genHome args
++ genWrapper true genUsers args
++ genWrapper lix ({ ... }: [ inputs.lix-module.nixosModules.default ]) args
++ genWrapper (system != "x86_64-linux") genNonX86 args;
};