1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-04 09:43:53 +00:00
ultima/modules/nixos/theme/default.nix
2024-11-23 23:31:05 +09:00

26 lines
593 B
Nix

{ lib, config, inputs, True, ... }:
with lib;
let cfg = config.module.themes.stylix;
in {
options = { module.themes.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;
};
};
};
};
}