diff --git a/flake.nix b/flake.nix index b2699bc..4a6baaf 100644 --- a/flake.nix +++ b/flake.nix @@ -19,6 +19,7 @@ inputs = { flake-compat.follows = ""; gitignore.follows = ""; + nixpkgs-stable.follows = ""; nixpkgs.follows = ""; }; }; diff --git a/nixos/machines/nodens/hardware-configuration.nix b/nixos/machines/nodens/hardware-configuration.nix index 756354c..ebb45bc 100644 --- a/nixos/machines/nodens/hardware-configuration.nix +++ b/nixos/machines/nodens/hardware-configuration.nix @@ -30,28 +30,16 @@ fileSystems."/mnt/persist" = { device = "/dev/disk/by-label/nixos"; fsType = "btrfs"; - options = [ - "subvol=persist" - "users" # Allows any user to mount and unmount - "nofail" # Prevent system from failing if this drive doesn't mount - ]; + options = ["subvol=persist"]; }; fileSystems."/mnt/boot" = { device = "/dev/disk/by-label/boot"; fsType = "ext4"; - options = [ - "users" # Allows any user to mount and unmount - "nofail" # Prevent system from failing if this drive doesn't mount - ]; }; fileSystems."/mnt/nix" = { device = "/dev/disk/by-label/nixos"; fsType = "btrfs"; - options = [ - "subvol=nix" - "users" # Allows any user to mount and unmount - "nofail" # Prevent system from failing if this drive doesn't mount - ]; + options = ["subvol=nix"]; }; swapDevices = [{device = "/dev/disk/by-uuid/89e13a83-506a-43b4-b06a-09424500ceda";}];