about summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-04-23 15:31:57 -0700
committerFranck Cuny <franck@fcuny.net>2023-04-23 15:31:57 -0700
commitd9038378556b28c05ac66144eee4d1f2ab30d320 (patch)
tree0c167ece6019e421c0c9f4344e1cfca271caf1a1 /home
parenthosts/tahoe: create a new user specifically for backups (diff)
downloadworld-d9038378556b28c05ac66144eee4d1f2ab30d320.tar.gz
modules/drone: clean this properly
Diffstat (limited to '')
-rw-r--r--home/default.nix1
-rw-r--r--home/drone-cli/default.nix12
2 files changed, 0 insertions, 13 deletions
diff --git a/home/default.nix b/home/default.nix
index f9929d1..d9efc94 100644
--- a/home/default.nix
+++ b/home/default.nix
@@ -7,7 +7,6 @@
     ./bluetooth
     ./direnv
     ./documentation
-    ./drone-cli
     ./emacs
     ./eog
     ./evince
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/"; };
-  };
-}