nix/modules/home/programs/btop/default.nix
Evan Reichard a78b85b344 almost
2025-03-28 13:52:51 -04:00

20 lines
477 B
Nix
Executable File

{ lib, config, namespace, ... }:
let
inherit (lib) mkIf;
cfg = config.${namespace}.programs.btop;
in
{
options.${namespace}.programs.btop = {
enable = lib.mkEnableOption "btop";
};
config = mkIf cfg.enable {
programs.btop.enable = true;
home.file.".config/btop/btop.conf".text =
builtins.readFile ./config/btop.conf;
home.file.".config/btop/themes/catppuccin_mocha.theme".text =
builtins.readFile ./config/catppuccin_mocha.theme;
};
}