feat(btop): add btop and catppuccin colours
This commit is contained in:
parent
09a74fce37
commit
03373732c4
2 changed files with 118 additions and 0 deletions
17
home/btop/nixos.nix
Normal file
17
home/btop/nixos.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ pkgs
|
||||
, lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.home.btop;
|
||||
in {
|
||||
options.home.btop = {
|
||||
enable = mkEnableOption "btop" // { default = !config.home.util.minimal; };
|
||||
};
|
||||
|
||||
config = {
|
||||
users.homeModules = [
|
||||
# this module passes gyroflow configuration to home-manager
|
||||
{ passthrough.btop = cfg; }
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue