mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-01 17:43:52 +00:00
26 lines
587 B
Nix
26 lines
587 B
Nix
|
{ lib, config, inputs, True, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let cfg = config.module.theme.stylix;
|
||
|
in {
|
||
|
options = { module.theme.stylix = { enable = mkEnableOption ""; }; };
|
||
|
|
||
|
imports = [ inputs.stylix.nixosModules.stylix ./colors.nix ];
|
||
|
config = mkIf cfg.enable {
|
||
|
stylix = True // { # COLORIZE !!!
|
||
|
autoEnable = false;
|
||
|
targets = {
|
||
|
console = True; # TTY
|
||
|
nixos-icons = True; # ICONS
|
||
|
chromium = True; # CHROMIUM LOL
|
||
|
fish = True; # SHELL
|
||
|
plymouth = True // { # STARTING SCREEN
|
||
|
logoAnimated = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|