-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(home-manager): init mako module (#49)
- Loading branch information
1 parent
3a12806
commit 4840eda
Showing
3 changed files
with
50 additions
and
0 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 |
---|---|---|
|
@@ -22,6 +22,7 @@ in | |
./helix.nix | ||
./glamour.nix | ||
./gtk.nix | ||
./mako.nix | ||
./neovim.nix | ||
./polybar.nix | ||
./sway.nix | ||
|
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ config | ||
, pkgs | ||
, lib | ||
, ... | ||
}: | ||
let | ||
inherit (builtins) readFile; | ||
|
||
cfg = config.services.mako.catppuccin; | ||
enable = cfg.enable && config.services.mako.enable; | ||
theme = lib.ctp.fromINI pkgs (pkgs.fetchFromGitHub | ||
{ | ||
owner = "catppuccin"; | ||
repo = "mako"; | ||
rev = "9dd088aa5f4529a3dd4d9760415e340664cb86df"; | ||
hash = "sha256-nUzWkQVsIH4rrCFSP87mXAka6P+Td2ifNbTuP7NM/SQ="; | ||
} + /src/${cfg.flavour}); | ||
|
||
# Settings that need to be extracted and put in extraConfig | ||
extraConfigAttrs = lib.attrsets.getAttrs [ "urgency=high" ] theme; | ||
in | ||
{ | ||
options.services.mako.catppuccin = | ||
lib.ctp.mkCatppuccinOpt "mako" config; | ||
|
||
# Will cause infinite recursion if config.services.mako is directly set as a whole | ||
config.services.mako = lib.mkIf enable { | ||
backgroundColor = theme.background-color; | ||
textColor = theme.text-color; | ||
borderColor = theme.border-color; | ||
progressColor = theme.progress-color; | ||
extraConfig = readFile ((pkgs.formats.ini { }).generate "mako-extra-config" extraConfigAttrs); | ||
}; | ||
} |
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