Added package options to all modules

This commit is contained in:
rasmus-kirk
2024-09-19 22:49:35 +02:00
parent 0ef85b5345
commit c93ecf892e
18 changed files with 150 additions and 117 deletions
+4 -4
View File
@@ -28,12 +28,12 @@
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs @ {
outputs = {
flake-parts,
vpnconfinement,
sub-merge,
...
}:
} @ inputs:
flake-parts.lib.mkFlake {
inherit inputs;
} {
@@ -48,9 +48,9 @@
flake = {
nixosModules = rec {
nixarr = import ./nixarr vpnconfinement;
nixarr = import ./nixarr sub-merge vpnconfinement;
imports = [ vpnconfinement.nixosModules.default ];
specialArgs = { inherit inputs; };
#specialArgs = { inherit sub-merge; };
default = nixarr;
};
};