11 lines
182 B
Nix
11 lines
182 B
Nix
{ pkgs, flakeRoot, ... }:
|
|
|
|
{
|
|
programs.stylix = {
|
|
enable = true;
|
|
settings = {
|
|
theme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml";
|
|
};
|
|
};
|
|
}
|