-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(home-manager): dont declare xdg.configFile when btop isn't enabled (
#37)
- Loading branch information
Showing
1 changed file
with
23 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,34 @@ | ||
{ config, pkgs, lib, ... }: | ||
{ config | ||
, pkgs | ||
, lib | ||
, ... | ||
}: | ||
let | ||
cfg = config.programs.btop.catppuccin; | ||
themePath = "/themes/catppuccin_${cfg.flavour}.theme"; | ||
theme = pkgs.fetchFromGitHub | ||
{ | ||
owner = "catppuccin"; | ||
repo = "btop"; | ||
rev = "7109eac2884e9ca1dae431c0d7b8bc2a7ce54e54"; | ||
sha256 = "sha256-QoPPx4AzxJMYo/prqmWD/CM7e5vn/ueyx+XQ5+YfHF8="; | ||
} + themePath; | ||
theme = | ||
pkgs.fetchFromGitHub | ||
{ | ||
owner = "catppuccin"; | ||
repo = "btop"; | ||
rev = "7109eac2884e9ca1dae431c0d7b8bc2a7ce54e54"; | ||
sha256 = "sha256-QoPPx4AzxJMYo/prqmWD/CM7e5vn/ueyx+XQ5+YfHF8="; | ||
} | ||
+ themePath; | ||
in | ||
{ | ||
options.programs.btop.catppuccin = | ||
lib.ctp.mkCatppuccinOpt "btop" config; | ||
|
||
# xdg is required for this to work | ||
config.xdg.enable = with lib; mkIf cfg.enable (mkForce true); | ||
|
||
config.xdg.configFile."btop${themePath}".source = with lib; | ||
mkIf cfg.enable theme; | ||
config = | ||
{ | ||
xdg.enable = with lib; mkIf cfg.enable (mkForce true); | ||
|
||
config.programs.btop.settings.color_theme = with lib; | ||
mkIf cfg.enable "${config.xdg.configHome + "/btop/${themePath}"}"; | ||
programs.btop.settings.color_theme = with lib; | ||
mkIf cfg.enable "${config.xdg.configHome + "/btop/${themePath}"}"; | ||
} | ||
// (lib.mkIf cfg.enable { | ||
xdg.configFile."btop${themePath}".source = theme; | ||
}); | ||
} |