diff options
author | Soispha <soispha@vhack.eu> | 2023-05-26 08:52:39 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-26 08:52:39 +0200 |
commit | b33a86303986047f56b574118842296b80302913 (patch) | |
tree | 89a7728a05531cbf663efb1c5537ba554caabfac /hosts | |
parent | Docs(todo): Update (diff) | |
download | nixos-config-b33a86303986047f56b574118842296b80302913.tar.gz nixos-config-b33a86303986047f56b574118842296b80302913.zip |
Fix(host/marduk): Override the iso name, to avoid a merge conflict
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/marduk/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/marduk/default.nix b/hosts/marduk/default.nix index aae467a5..a45d9efd 100644 --- a/hosts/marduk/default.nix +++ b/hosts/marduk/default.nix @@ -1,5 +1,5 @@ # vim: ts=2 -{...}: { +{lib, ...}: { imports = [ ./hardware ./networking.nix @@ -8,6 +8,8 @@ console = { keyMap = "dvorak"; }; + # needed to override defaults + isoImage.isoName = lib.mkForce "nixos-iso"; system.stateVersion = "23.05"; } |