mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 20:09:07 +01:00
16 lines
343 B
Nix
16 lines
343 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.custom.programs.btop.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.custom.programs.btop.enable {
|
|
programs.btop = {
|
|
enable = true;
|
|
settings.settings =
|
|
{
|
|
dark = "adwaita-dark";
|
|
light = "adwaita";
|
|
}
|
|
.${config.custom.theme};
|
|
};
|
|
};
|
|
}
|