{ inputs, pkgs, config, lib, ... }: let cfg = config.liminalOS.theming; in { options.liminalOS.theming = { enable = lib.mkOption { type = lib.types.bool; default = config.liminalOS.enable; description = '' Whether to uniformly theme the entire system using Stylix. ''; }; plymouth.enable = lib.mkOption { type = lib.types.bool; default = cfg.enable; description = '' Whether to enable plymouth and sane defaults. ''; }; }; config = lib.mkIf cfg.enable { stylix = { enable = true; image = "${inputs.wallpapers}/aesthetic/afterglow_city_skyline_at_night.png"; # image = "${inputs.wallpapers}/aesthetic/red_deadly_sun.jpg"; # image = "${inputs.wallpapers}/aesthetic/afterglow_sand_dunes.jpg"; base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml"; polarity = "dark"; fonts = { serif = { name = "Noto Serif"; package = pkgs.noto-fonts; }; sansSerif = { name = "Noto Sans"; package = pkgs.noto-fonts; }; emoji = { name = "Noto Color Emoji"; package = pkgs.noto-fonts-emoji; }; monospace = { name = "CaskaydiaCove Nerd Font"; package = pkgs.nerd-fonts.caskaydia-cove; }; }; cursor = { package = pkgs.bibata-cursors; name = "Bibata-Modern-Ice"; size = 26; }; }; boot = { plymouth = { enable = true; font = "${config.stylix.fonts.monospace.package}/share/fonts/truetype/NerdFonts/CaskaydiaCove/CaskaydiaCoveNerdFontMono-Regular.ttf"; }; # Enable "Silent Boot" consoleLogLevel = 3; initrd.verbose = false; kernelParams = [ "quiet" "splash" "boot.shell_on_fail" "rd.systemd.show_status=false" "rd.udev.log_level=3" "udev.log_priority=3" ]; initrd.systemd.enable = true; }; }; }