this is solid ig

This commit is contained in:
alisceon 2026-01-07 22:56:05 +01:00
parent 56028e3345
commit 1b31f9e29c
6 changed files with 31 additions and 74 deletions

View file

@ -1,31 +1,18 @@
{ config, pkgs, lib, ... }:
let
# Opinionated: Nord Base16 scheme (YAML). Swap this for Catppuccin, Gruvbox, etc.
nordYaml = pkgs.fetchurl {
url = "https://raw.githubusercontent.com/tinted-theming/base16-schemes/master/nord.yaml";
sha256 = lib.fakeSha256; # replace with real hash after first build
};
in
{
stylix = {
enable = true;
autoEnable = true;
enableReleaseChecks = false;
# Wallpaper applied broadly (Sway, etc.)
image = pkgs.fetchurl {
url = "https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2400&q=80";
sha256 = lib.fakeSha256; # replace with real hash after first build
};
base16Scheme = "${pkgs.base16-schemes}/share/themes/selenized-black.yaml";
base16Scheme = nordYaml;
# Choose light/dark behavior
polarity = "dark";
fonts = {
monospace = {
package = pkgs.jetbrains-mono;
name = "JetBrains Mono";
package = pkgs.inconsolata;
name = "Inconsolata";
};
sansSerif = {
package = pkgs.inter;
@ -36,37 +23,22 @@ in
name = "Source Serif 4";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
package = pkgs.noto-fonts-color-emoji;
name = "noto-fonts-color-emoji";
};
sizes = {
applications = 11;
terminal = 12;
desktop = 11;
popups = 11;
applications = 14;
terminal = 14;
desktop = 14;
popups = 14;
};
};
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 24;
size = 20;
};
# Optional: global opacity hints some targets use
opacity = {
applications = 0.95;
terminal = 0.92;
popups = 0.95;
};
# Tell Stylix to actually theme these:
targets.sway.enable = true;
targets.waybar.enable = true;
# Usually nice to have:
targets.gtk.enable = true;
targets.kitty.enable = true; # if you use kitty
};
}