diff options
| author | Baitinq <[email protected]> | 2022-09-06 23:10:25 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-07 12:42:31 +0200 |
| commit | a73d93704de272c2a2970a0f414056e3678da9a2 (patch) | |
| tree | 9f8acaec5bbc03c2a89598e834156b109ad2dc40 /flake.nix | |
| parent | Add irqbalance service (diff) | |
| download | nixos-config-a73d93704de272c2a2970a0f414056e3678da9a2.tar.gz nixos-config-a73d93704de272c2a2970a0f414056e3678da9a2.tar.bz2 nixos-config-a73d93704de272c2a2970a0f414056e3678da9a2.zip | |
Add ability to create iso of nixosConfigurations
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index ad1ead9..de8a701 100644 --- a/flake.nix +++ b/flake.nix @@ -27,12 +27,25 @@ { nixosConfigurations = import ./hosts { isNixOS = true; + extraModules = [ ]; + isIso = false; inherit (nixpkgs) lib; inherit inputs nixpkgs home-manager; }; homeConfigurations = import ./hosts { isNixOS = false; + extraModules = [ ]; + isIso = false; + #no COde duplication here: TODO + inherit (nixpkgs) lib; + inherit inputs nixpkgs home-manager; + }; + + isoConfigurations = import ./hosts { + isNixOS = true; + extraModules = [ ]; + isIso = true; #no COde duplication here: TODO inherit (nixpkgs) lib; inherit inputs nixpkgs home-manager; |