From b23caa238e1f89e6e158b12bbb9dc025914a6570 Mon Sep 17 00:00:00 2001 From: Bun Date: Fri, 21 Mar 2025 21:14:26 -0400 Subject: [PATCH] Add a new mount --- hosts/envy/filesystems/default.nix | 2 +- hosts/kitty/filesystems/default.nix | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/hosts/envy/filesystems/default.nix b/hosts/envy/filesystems/default.nix index 11d07d5f..6fbd2d35 100644 --- a/hosts/envy/filesystems/default.nix +++ b/hosts/envy/filesystems/default.nix @@ -2,7 +2,7 @@ { fileSystems = { # Secondary drive - "/mnt/Games" = { + "/persist/storage" = { device = "/dev/disk/by-uuid/135281e2-72ec-4c00-91e8-9897a32c02ce"; fsType = "btrfs"; options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ]; diff --git a/hosts/kitty/filesystems/default.nix b/hosts/kitty/filesystems/default.nix index af061215..729cf9f6 100644 --- a/hosts/kitty/filesystems/default.nix +++ b/hosts/kitty/filesystems/default.nix @@ -1,8 +1,15 @@ { config, ... }: { - fileSystems."/home/${config.sysusers.main}/Midas" = { - device = "10.2.0.1:/"; - fsType = "nfs4"; - options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ]; + fileSystems = { + "/persist/storage" = { + device = "/dev/disk/by-uuid/edd3e293-1aff-4fc0-96fa-4e17d6cccfca"; + fsType = "btrfs"; + options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ]; + }; + "/home/${config.sysusers.main}/Midas" = { + device = "10.2.0.1:/"; + fsType = "nfs4"; + options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ]; + }; }; }