aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/tools/btop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'snowfall/modules/home/tools/btop/default.nix')
-rw-r--r--snowfall/modules/home/tools/btop/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/snowfall/modules/home/tools/btop/default.nix b/snowfall/modules/home/tools/btop/default.nix
deleted file mode 100644
index 87528a1..0000000
--- a/snowfall/modules/home/tools/btop/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ options, config, lib, namespace, ... }:
-
-with lib; with lib.${namespace}; let
- cfg = config.${namespace}.tools.btop;
-in {
- options.${namespace}.tools.btop = with types; {
- enable = mkEnableOption "btop";
- };
-
- config = mkIf cfg.enable {
- programs.btop = {
- enable = true;
- };
- };
-}