nixos-config/nixos/system/settings/style.nix
2024-12-23 21:08:15 +01:00

43 lines
1.0 KiB
Nix

{
lib,
config,
pkgs-stable,
userSettings,
...
}: {
options = {
sys.style.enable = lib.mkEnableOption "Enable the Stylix theme manager.";
};
config = lib.mkIf config.sys.style.enable {
stylix = {
enable = true;
image = ../../../config/backgrounds/${userSettings.background};
base16Scheme = "${pkgs-stable.base16-schemes}/share/themes/${userSettings.theme}.yaml"; # List all possible themes: $ nix build nixpkgs#base16-schemes && ls result/share/themes
polarity = "dark";
autoEnable = true;
# Set the cursor theme.
cursor = {
package = pkgs-stable.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 24;
};
fonts = {
sizes = {
desktop = 8;
applications = 10;
popups = 10;
terminal = 12;
};
monospace = {
name = "JetBrainsMono Nerd Font";
package = pkgs-stable.nerdfonts.override {fonts = ["JetBrainsMono"];};
};
};
};
};
}