about summary refs log tree commit diff
path: root/home/drone-cli/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-06-11 13:47:53 -0700
committerFranck Cuny <franck@fcuny.net>2022-06-11 13:49:31 -0700
commit614fc2fcce0e9ae0bcfdc6e08d3c4bac846d02a8 (patch)
treeb3557983fea7381545b80de64d116db42298ee6b /home/drone-cli/default.nix
parentref(gitea): remove all modules for gitea (diff)
downloadworld-614fc2fcce0e9ae0bcfdc6e08d3c4bac846d02a8.tar.gz
ref(drone): remove all modules and configurations
I do not use drone anymore, no need to keep this around.

Change-Id: I8f9564747939a6d1a2b95bcfe8e2c70e46d8bc1e
Reviewed-on: https://cl.fcuny.net/c/world/+/411
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'home/drone-cli/default.nix')
-rw-r--r--home/drone-cli/default.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/home/drone-cli/default.nix b/home/drone-cli/default.nix
deleted file mode 100644
index 948e88a..0000000
--- a/home/drone-cli/default.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ config, lib, pkgs, ... }:
-let cfg = config.my.home.drone-cli;
-in
-{
-  options.my.home.drone-cli = with lib; {
-    enable = mkEnableOption "drone-cli configuration";
-  };
-  config = lib.mkIf cfg.enable {
-    home.packages = with pkgs; [ drone-cli ];
-    home.sessionVariables = { DRONE_SERVER = "https://drone.fcuny.xyz/"; };
-  };
-}