about summary refs log tree commit diff
path: root/home/drone-cli
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-05-02 18:09:26 -0700
committerFranck Cuny <franck@fcuny.net>2022-05-02 18:09:26 -0700
commitf98a6ffe7353fad1fda2f59ef79decf17c1c4f2c (patch)
tree9ec0c1596a23ea4c1d4265c93cccfea06684ac78 /home/drone-cli
parentmodules: fix configuration for drone-runner-exec (diff)
downloadworld-f98a6ffe7353fad1fda2f59ef79decf17c1c4f2c.tar.gz
home: install the drone CLI
Diffstat (limited to 'home/drone-cli')
-rw-r--r--home/drone-cli/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/home/drone-cli/default.nix b/home/drone-cli/default.nix
new file mode 100644
index 0000000..2d0018b
--- /dev/null
+++ b/home/drone-cli/default.nix
@@ -0,0 +1,8 @@
+{ config, lib, pkgs, ... }:
+let cfg = config.my.home.drone-cli;
+in {
+  options.my.home.drone-cli = with lib; {
+    enable = mkEnableOption "drone-cli configuration";
+  };
+  config.home.packages = with pkgs; lib.mkIf cfg.enable ([ drone-cli ]);
+}