diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-02 18:09:26 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-02 18:09:26 -0700 |
commit | f98a6ffe7353fad1fda2f59ef79decf17c1c4f2c (patch) | |
tree | 9ec0c1596a23ea4c1d4265c93cccfea06684ac78 /home/drone-cli/default.nix | |
parent | modules: fix configuration for drone-runner-exec (diff) | |
download | world-f98a6ffe7353fad1fda2f59ef79decf17c1c4f2c.tar.gz |
home: install the drone CLI
Diffstat (limited to '')
-rw-r--r-- | home/drone-cli/default.nix | 8 |
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 ]); +} |