stylix adjustments

This commit is contained in:
2024-12-18 13:37:53 -06:00
parent 181babfa2a
commit d5af07a191
3 changed files with 37 additions and 26 deletions

36
stylix.nix Normal file
View File

@@ -0,0 +1,36 @@
{ pkgs, ... }:
{
stylix = {
enable = true;
image = ./wallpapers/classical.jpeg;
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
};
fonts = {
monospace = {
package = pkgs.nerd-fonts.comic-shanns-mono;
name = "ComicShansMono Nerd Font Mono";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
};
};
home-manager.users.jawz.stylix = {
targets = {
vesktop.enable = true;
};
iconTheme = {
enable = true;
package = pkgs.papirus-icon-theme;
light = "Papirus-Light";
dark = "Papirus-Dark";
};
};
}