mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
44 lines
1,006 B
Nix
44 lines
1,006 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = [
|
|
pkgs.adwaita-icon-theme
|
|
];
|
|
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;
|
|
polarity = "dark";
|
|
fonts = {
|
|
sansSerif = {
|
|
name = "Atkinson Hyperlegible Next";
|
|
package = pkgs.atkinson-hyperlegible-next;
|
|
};
|
|
serif = {
|
|
name = "Libre Baskerville";
|
|
package = pkgs.libre-baskerville;
|
|
};
|
|
monospace = {
|
|
name = "Atkinson Hyperlegible Mono";
|
|
package = pkgs.atkinson-hyperlegible-mono;
|
|
};
|
|
};
|
|
autoEnable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/dracula.yaml";
|
|
};
|
|
}
|