mirror of
https://git.sr.ht/~azikx/karbur
synced 2024-10-30 11:26:21 +00:00
19 lines
476 B
Nix
19 lines
476 B
Nix
{ inputs, ... }: {
|
|
# SYSTEM COLORSCHEME (see targets)
|
|
imports = [ inputs.stylix.nixosModules.stylix ./paradise.nix ];
|
|
stylix = { # COLORIZE !!!
|
|
enable = true;
|
|
autoEnable = false;
|
|
targets = {
|
|
console.enable = true; # TTY
|
|
nixos-icons.enable = true; # ICONS
|
|
chromium.enable = true; # CHROMIUM LOL
|
|
fish.enable = true; # SHELL
|
|
plymouth = { # STARTING SCREEN
|
|
enable = true;
|
|
logoAnimated = true;
|
|
};
|
|
};
|
|
};
|
|
}
|