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