diff options
author | Franck Cuny <franck@fcuny.net> | 2022-11-05 13:26:49 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-11-06 19:27:33 -0800 |
commit | 9038f3998dcc66f2ca091100f857a518fe201212 (patch) | |
tree | 6e0ff5e7b3ee7367d1fedbf57a407040b8b8ec49 /home | |
parent | Revert "ref(drone): remove all modules and configurations" (diff) | |
download | world-9038f3998dcc66f2ca091100f857a518fe201212.tar.gz |
fix(services/drone): enable drone
The URL for drone changed to https://ci.fcuny.net. The secrets also changed (and we remove the unencrypted file with secrets).
Diffstat (limited to '')
-rw-r--r-- | home/drone-cli/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/drone-cli/default.nix b/home/drone-cli/default.nix index 948e88a..68173c8 100644 --- a/home/drone-cli/default.nix +++ b/home/drone-cli/default.nix @@ -7,6 +7,6 @@ in }; config = lib.mkIf cfg.enable { home.packages = with pkgs; [ drone-cli ]; - home.sessionVariables = { DRONE_SERVER = "https://drone.fcuny.xyz/"; }; + home.sessionVariables = { DRONE_SERVER = "https://ci.fcuny.net/"; }; }; } |