about summary refs log tree commit diff stats
path: root/hosts
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-05-26 08:52:39 +0200
committerSoispha <soispha@vhack.eu>2023-05-26 08:52:39 +0200
commitb33a86303986047f56b574118842296b80302913 (patch)
tree89a7728a05531cbf663efb1c5537ba554caabfac /hosts
parentDocs(todo): Update (diff)
downloadnixos-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.nix4
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";
 }