mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2025-09-06 11:31:38 +02:00
more themeing stuff
This commit is contained in:
parent
6ec141902a
commit
8b6d55aad6
3 changed files with 14 additions and 27 deletions
55
modules/desktop-environment/themeing.nix
Normal file
55
modules/desktop-environment/themeing.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{pkgs, ...}: {
|
||||
stylix = {
|
||||
enable = true;
|
||||
polarity = "dark";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
|
||||
fonts = {
|
||||
serif = {
|
||||
package = pkgs.libertine;
|
||||
name = "Linux Libertine O";
|
||||
};
|
||||
|
||||
sansSerif = {
|
||||
package = pkgs.atkinson-hyperlegible;
|
||||
name = "Atkinson Hyperlegible";
|
||||
};
|
||||
|
||||
monospace = {
|
||||
package = pkgs.nerd-fonts.departure-mono;
|
||||
name = "Departure Mono Nerd Font";
|
||||
};
|
||||
|
||||
emoji = {
|
||||
package = pkgs.noto-fonts-emoji;
|
||||
name = "Noto Color Emoji";
|
||||
};
|
||||
};
|
||||
};
|
||||
home-manager.users.jade = {pkgs, ...}: {
|
||||
stylix.targets = {
|
||||
firefox = {
|
||||
profileNames = ["jade"];
|
||||
};
|
||||
helix.enable = false;
|
||||
btop.enable = false;
|
||||
nushell.enable = false;
|
||||
starship.enable = false;
|
||||
kitty.enable = false;
|
||||
dunst.enable = false;
|
||||
wofi.enable = false;
|
||||
};
|
||||
};
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
cursorTheme = {
|
||||
package = pkgs.phinger-cursors;
|
||||
name = "phinger-cursors";
|
||||
size = 30;
|
||||
};
|
||||
iconTheme = {
|
||||
package = pkgs.gruvbox-dark-icons-gtk;
|
||||
name = "gruvbox-dark-icons";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue