Added btop module
This commit is contained in:
parent
c1e24c6e15
commit
5f43068efb
25
modules/apps/btop/default.nix
Normal file
25
modules/apps/btop/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
options,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.aa.apps.btop;
|
||||||
|
in {
|
||||||
|
options.aa.apps.btop = with types; {
|
||||||
|
enable = mkEnableOption "btop";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
aa.home.extraOptions.programs.btop = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
theme_background = false;
|
||||||
|
vim_keys = true;
|
||||||
|
color_theme = "gruvbox_dark_v2";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -21,5 +21,7 @@ in {
|
||||||
];
|
];
|
||||||
|
|
||||||
powerManagement.powertop.enable = true;
|
powerManagement.powertop.enable = true;
|
||||||
|
|
||||||
|
aa.apps.btop.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
hardware.tlp.enable = true;
|
hardware.tlp.enable = true;
|
||||||
|
|
||||||
system.zfs.enable = true;
|
system.zfs.enable = true;
|
||||||
|
apps.btop.enable = true;
|
||||||
apps.yubikey.enable = true;
|
apps.yubikey.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue