update stylix theme

This commit is contained in:
gwg313 2026-04-17 23:49:23 -04:00
parent 66c9360135
commit 1aef0c7a17
Signed by: gwg313
GPG key ID: 60FF63B4826B7400

View file

@ -4,33 +4,81 @@
theme-home-stylix = { theme-home-stylix = {
includeInEmbeddedHomeManager = false; includeInEmbeddedHomeManager = false;
homeModules = [ homeModules = [
({ inputs, pkgs, ... }: { (
imports = [ { inputs, pkgs, ... }:
inputs.stylix.homeModules.stylix {
]; imports = [
inputs.stylix.homeModules.stylix
];
stylix.enable = true; stylix = {
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-sulphurpool-light.yaml"; enable = true;
}) base16Scheme = builtins.fetchurl {
url = "https://raw.githubusercontent.com/scottmckendry/cyberdream.nvim/main/extras/base16/cyberdream-light.yaml";
sha256 = "07fpphdx396wi7093dqyhvpmacnradi7xqxxcwp89x9pnwqxjvq3";
};
cursor = {
name = "phinger-cursors-light";
package = pkgs.phinger-cursors;
size = 20;
};
fonts = {
serif = {
package = pkgs.lmodern;
name = "Latin Modern Roman";
};
sansSerif = {
package = pkgs.inter;
name = "Inter";
};
monospace = {
package = pkgs.fira-code;
name = "Fire Code";
};
emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
};
sizes = {
applications = 13;
desktop = 13;
popups = 13;
terminal = 13;
};
};
};
}
)
]; ];
}; };
theme-system-stylix.nixosModules = [ theme-system-stylix.nixosModules = [
({ inputs, pkgs, ... }: { (
imports = [ { inputs, pkgs, ... }:
inputs.stylix.nixosModules.stylix {
]; imports = [
inputs.stylix.nixosModules.stylix
];
stylix = { stylix = {
enable = true; enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-sulphurpool-light.yaml"; base16Scheme = builtins.fetchurl {
fonts = { url = "https://raw.githubusercontent.com/scottmckendry/cyberdream.nvim/main/extras/base16/cyberdream-light.yaml";
monospace = { sha256 = "07fpphdx396wi7093dqyhvpmacnradi7xqxxcwp89x9pnwqxjvq3";
name = "JetBrainsMono Nerd Font"; };
fonts = {
monospace = {
name = "JetBrainsMono Nerd Font";
};
}; };
}; };
}; }
}) )
]; ];
}; };
} }