This commit is contained in:
Yan Lin 2025-11-04 11:49:56 +01:00
parent ebd2f35143
commit 64b4dc4b3f
2 changed files with 7 additions and 3 deletions

View file

@ -58,8 +58,6 @@ in
"firefox.desktop" "firefox.desktop"
"obsidian.desktop" "obsidian.desktop"
"org.keepassxc.KeePassXC.desktop" "org.keepassxc.KeePassXC.desktop"
"org.gnome.Evince.desktop"
"org.gnome.Loupe.desktop"
]; ];
}; };

View file

@ -28,6 +28,9 @@ in
hms = "home-manager switch --flake ~/.config/nix#$(whoami)@$(hostname)"; hms = "home-manager switch --flake ~/.config/nix#$(whoami)@$(hostname)";
hms-offline = "home-manager switch --flake ~/.config/nix#$(whoami)@$(hostname) --option substitute false"; hms-offline = "home-manager switch --flake ~/.config/nix#$(whoami)@$(hostname) --option substitute false";
fs = "oss && hms"; fs = "oss && hms";
# Steam Deck screenshot sync
deck-ss = "rsync -avh --progress 'deck:.local/share/Steam/userdata/*/760/remote/*/screenshots/' ~/Pictures/Steam/";
}; };
initContent = '' initContent = ''
@ -177,4 +180,7 @@ in
# Generate projects.json for shell scripts # Generate projects.json for shell scripts
home.file.".config/nix/config/projects.json".text = builtins.toJSON projectsConfig; home.file.".config/nix/config/projects.json".text = builtins.toJSON projectsConfig;
# Ensure Steam screenshots directory exists
home.file."Pictures/Steam/.gitkeep".text = "";
} }