From 1ab2c8a4925b0f43d045b22736a53d0d4cdf3cdc Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Sat, 12 Oct 2024 14:33:43 -0500 Subject: [PATCH] fs --- hosts/desktop/hyprland/home.nix | 6 +++--- hosts/nas/filesystems.nix | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/hosts/desktop/hyprland/home.nix b/hosts/desktop/hyprland/home.nix index f5dc7cb..362f1e1 100644 --- a/hosts/desktop/hyprland/home.nix +++ b/hosts/desktop/hyprland/home.nix @@ -18,7 +18,7 @@ let iconThemeColor = "dark"; # "" "light" "dark" iconThemeVariant = ""; # "" "purple" "pink" "red" "orange" "yellow" "green" "teal" "grey" iconThemeScheme = "nord"; # "" "nord" "dracula" "gruvbox" "everforest" "catppuccin" - iconTheme = "Colloid-Dark"; + iconTheme = "Colloid-Nord"; iconThemePkg = pkgs.colloid-icon-theme.override { schemeVariants = [ iconThemeScheme ]; colorVariants = [ "default" ]; @@ -164,7 +164,7 @@ in enable = true; settings = { "org/gnome/desktop/interface".cursor-theme = cursorTheme; - "org/gnome/desktop/interface".icon-theme = "Colloid-Nord-Dark"; + "org/gnome/desktop/interface".icon-theme = iconTheme; }; }; @@ -182,7 +182,7 @@ in }; iconTheme = { - name = "Colloid-Nord-Dark"; + name = iconTheme; package = iconThemePkg; }; diff --git a/hosts/nas/filesystems.nix b/hosts/nas/filesystems.nix index 9d2a266..e39c15a 100644 --- a/hosts/nas/filesystems.nix +++ b/hosts/nas/filesystems.nix @@ -21,6 +21,12 @@ in options = [ "subvol=mariadb" ] ++ defaultOptions; }; + fileSystems."/media/nas/ssd/mongodb" = { + device = "/dev/disk/by-uuid/09ac8b6b-e553-4cd8-ae62-8d8c17fe8b0c"; + fsType = "btrfs"; + options = [ "subvol=mongodb" ] ++ defaultOptions; + }; + fileSystems."/media/nas/ssd/VMs" = { device = "/dev/disk/by-uuid/09ac8b6b-e553-4cd8-ae62-8d8c17fe8b0c"; fsType = "btrfs";