Files
ccl-nixos-dotfiles/modules/cli/monitor/btop/default.nix
2025-04-19 12:42:19 +08:00

23 lines
318 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.my.makeHomePackageConfig {
inherit config pkgs;
packageName = "btop";
packagePath = [ "btop" ];
optionPath = [
"cli"
"monitor"
"btop"
];
extraConfig = {
my.home.xdg.configFile."btop" = {
source = ./config;
recursive = true;
};
};
}