diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-11 13:47:53 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-11 13:49:31 -0700 |
commit | 614fc2fcce0e9ae0bcfdc6e08d3c4bac846d02a8 (patch) | |
tree | b3557983fea7381545b80de64d116db42298ee6b /home | |
parent | ref(gitea): remove all modules for gitea (diff) | |
download | world-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 '')
-rw-r--r-- | home/default.nix | 1 | ||||
-rw-r--r-- | home/drone-cli/default.nix | 12 |
2 files changed, 0 insertions, 13 deletions
diff --git a/home/default.nix b/home/default.nix index 485cc34..0c7d664 100644 --- a/home/default.nix +++ b/home/default.nix @@ -6,7 +6,6 @@ ./bluetooth ./direnv ./documentation - ./drone-cli ./element ./emacs ./eog 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/"; }; - }; -} |