diff --git a/hosts/nixos/deck/home.nix b/hosts/nixos/deck/home.nix index 70b8518..e00c729 100644 --- a/hosts/nixos/deck/home.nix +++ b/hosts/nixos/deck/home.nix @@ -17,7 +17,7 @@ gnome-home-custom.alwaysShowTopBar = true; # Disable Documents sync on Steam Deck (save space) - syncthing-custom.enabledFolders = [ "Credentials" "Obsidian" ]; + syncthing-custom.enabledFolders = [ "Credentials" ]; # Enable Ghostty terminal with OSC-52 clipboard support programs.ghostty-custom = { @@ -35,7 +35,6 @@ # ThinkPad-specific applications home.packages = with pkgs; [ - obsidian keepassxc vlc ]; diff --git a/modules/gnome/home.nix b/modules/gnome/home.nix index 08fd6da..8261061 100644 --- a/modules/gnome/home.nix +++ b/modules/gnome/home.nix @@ -53,7 +53,6 @@ in "org.gnome.Nautilus.desktop" "com.mitchellh.ghostty.desktop" "firefox.desktop" - "obsidian.desktop" "org.keepassxc.KeePassXC.desktop" ]; }; diff --git a/modules/syncthing.nix b/modules/syncthing.nix index c4a9eae..5badd96 100644 --- a/modules/syncthing.nix +++ b/modules/syncthing.nix @@ -90,7 +90,7 @@ in // (lib.optionalAttrs (lib.elem "Obsidian" cfg.enabledFolders) { "Obsidian" = { path = "~/Obsidian"; - devices = [ "iphone" "hs" "thinkpad" "deck" ]; + devices = [ "iphone" "hs" "thinkpad" ]; ignorePerms = true; versioning = commonVersioning; };