diff --git a/configuration.nix b/configuration.nix index da965b2..b7f50d9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -83,6 +83,11 @@ htop ]; + programs.neovim = { + withRuby = false; + withPython3 = false; + }; + # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; diff --git a/devices/conv.nix b/devices/conv.nix index 5defb20..091b9b1 100644 --- a/devices/conv.nix +++ b/devices/conv.nix @@ -12,6 +12,7 @@ boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd sg" ]; boot.extraModulePackages = [ ]; + boot.zfs.forceImportRoot = false; fileSystems."/" = { device = "NIX_CONV_POOL/root"; diff --git a/devices/desk.nix b/devices/desk.nix index 8509208..2168cde 100644 --- a/devices/desk.nix +++ b/devices/desk.nix @@ -14,6 +14,7 @@ boot.kernelModules = [ "kvm-amd" "sg" ]; boot.extraModulePackages = [ ]; boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + boot.zfs.forceImportRoot = false; fileSystems."/" = { device = "NIX_DESK_POOL/root"; diff --git a/users/shatteredmint.nix b/users/shatteredmint.nix index 66def8b..e517199 100644 --- a/users/shatteredmint.nix +++ b/users/shatteredmint.nix @@ -65,6 +65,9 @@ extraPackages = with pkgs; [ wl-clipboard ]; + + withRuby = false; + withPython3 = false; };