diff options
author | Franck Cuny <franck@fcuny.net> | 2023-04-23 15:31:57 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-04-23 15:31:57 -0700 |
commit | d9038378556b28c05ac66144eee4d1f2ab30d320 (patch) | |
tree | 0c167ece6019e421c0c9f4344e1cfca271caf1a1 /home/drone-cli | |
parent | hosts/tahoe: create a new user specifically for backups (diff) | |
download | world-d9038378556b28c05ac66144eee4d1f2ab30d320.tar.gz |
modules/drone: clean this properly
Diffstat (limited to '')
-rw-r--r-- | home/drone-cli/default.nix | 12 |
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 68173c8..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://ci.fcuny.net/"; }; - }; -} |