remove obsidian from deck

This commit is contained in:
Yan Lin 2025-11-05 19:41:04 +01:00
parent 95b6a49ccb
commit 959a6d9dc1
3 changed files with 2 additions and 4 deletions

View file

@ -17,7 +17,7 @@
gnome-home-custom.alwaysShowTopBar = true; gnome-home-custom.alwaysShowTopBar = true;
# Disable Documents sync on Steam Deck (save space) # 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 # Enable Ghostty terminal with OSC-52 clipboard support
programs.ghostty-custom = { programs.ghostty-custom = {
@ -35,7 +35,6 @@
# ThinkPad-specific applications # ThinkPad-specific applications
home.packages = with pkgs; [ home.packages = with pkgs; [
obsidian
keepassxc keepassxc
vlc vlc
]; ];

View file

@ -53,7 +53,6 @@ in
"org.gnome.Nautilus.desktop" "org.gnome.Nautilus.desktop"
"com.mitchellh.ghostty.desktop" "com.mitchellh.ghostty.desktop"
"firefox.desktop" "firefox.desktop"
"obsidian.desktop"
"org.keepassxc.KeePassXC.desktop" "org.keepassxc.KeePassXC.desktop"
]; ];
}; };

View file

@ -90,7 +90,7 @@ in
// (lib.optionalAttrs (lib.elem "Obsidian" cfg.enabledFolders) { // (lib.optionalAttrs (lib.elem "Obsidian" cfg.enabledFolders) {
"Obsidian" = { "Obsidian" = {
path = "~/Obsidian"; path = "~/Obsidian";
devices = [ "iphone" "hs" "thinkpad" "deck" ]; devices = [ "iphone" "hs" "thinkpad" ];
ignorePerms = true; ignorePerms = true;
versioning = commonVersioning; versioning = commonVersioning;
}; };