feat: add hyprshot-save script

- Added hyprshot-save shell script with --no-upload option
- Updated keybindings to use the new hyprshot-save script
- Refactored the zipline secret in secrets.yaml into zipline/env and zipline/token
- Updated zipline.nix on host vps to use the new zipline/env secret path
This commit is contained in:
lightly-toasted 2025-09-26 15:52:53 +09:00
parent 55a021961c
commit 3318d2d14b
4 changed files with 65 additions and 20 deletions

View file

@ -1,13 +1,13 @@
{ config, ... }:
{
sops.secrets."zipline" = { };
sops.secrets."zipline/env" = { };
services.zipline = {
enable = true;
settings = {
CORE_HOSTNAME = "127.0.0.1";
CORE_PORT = 3000;
};
environmentFiles = [ config.sops.secrets."zipline".path ];
environmentFiles = [ config.sops.secrets."zipline/env".path ];
};
}