Add path option for module

This commit is contained in:
thiloho
2024-08-13 18:27:43 +02:00
parent 96c00096b4
commit 6785bd0dfa
4 changed files with 39 additions and 14 deletions

View File

@@ -89,7 +89,10 @@
};
demo-server = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [ ./nix/demo-server ];
modules = [
./nix/demo-server
{ _module.args.localArchtikaPackage = self.packages."aarch64-linux".default; }
];
};
};