mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 03:15:41 +00:00
- 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
13 lines
255 B
Nix
13 lines
255 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
sops.secrets."zipline/env" = { };
|
|
services.zipline = {
|
|
enable = true;
|
|
settings = {
|
|
CORE_HOSTNAME = "127.0.0.1";
|
|
CORE_PORT = 3000;
|
|
};
|
|
environmentFiles = [ config.sops.secrets."zipline/env".path ];
|
|
};
|
|
}
|