mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
40 lines
848 B
Nix
40 lines
848 B
Nix
{ pkgs, ... }: {
|
|
stylix = {
|
|
enable = true;
|
|
targets = {
|
|
grub.useWallpaper = false;
|
|
};
|
|
homeManagerIntegration = {
|
|
followSystem = true;
|
|
autoImport = false;
|
|
};
|
|
cursor = {
|
|
package = pkgs.bibata-cursors;
|
|
name = "Bibata-Modern-Ice";
|
|
size = 32;
|
|
};
|
|
opacity = {
|
|
desktop = 1.0;
|
|
applications = 1.0;
|
|
terminal = 0.8;
|
|
popups = 0.8;
|
|
};
|
|
image = ./stylix.png;
|
|
fonts = {
|
|
sansSerif = {
|
|
name = "Jost";
|
|
package = pkgs.jost;
|
|
};
|
|
serif = {
|
|
name = "Libre Baskerville";
|
|
package = pkgs.libre-baskerville;
|
|
};
|
|
monospace = {
|
|
name = "Monaspace Krypton";
|
|
package = pkgs.monaspace;
|
|
};
|
|
};
|
|
autoEnable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/sakura.yaml";
|
|
};
|
|
}
|