From 9a30ab22b243048092358467b8b96de81b435cd4 Mon Sep 17 00:00:00 2001 From: Hermes-Neo Date: Sat, 18 Jul 2026 03:06:58 +0100 Subject: [PATCH] fix: wrap fileSystems in mkDefault so disko overrides them --- hosts/blade/hardware-configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/blade/hardware-configuration.nix b/hosts/blade/hardware-configuration.nix index b954fab..97b45bb 100644 --- a/hosts/blade/hardware-configuration.nix +++ b/hosts/blade/hardware-configuration.nix @@ -1,4 +1,4 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ +# Do not modify this file! It was generated by 'nixos-generate-config' # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. { config, lib, pkgs, modulesPath, ... }: @@ -13,12 +13,12 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = + fileSystems."/" = lib.mkDefault { device = "/dev/disk/by-uuid/64882a2d-c966-4fc9-96f0-413c6d835848"; fsType = "ext4"; }; - fileSystems."/boot" = + fileSystems."/boot" = lib.mkDefault { device = "/dev/disk/by-uuid/8381-A6DD"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ];