Make theming modular
This commit is contained in:
parent
3cd2f6fb68
commit
e5e23373da
11 changed files with 596 additions and 288 deletions
38
nix/programs/themes/stylix.nix
Normal file
38
nix/programs/themes/stylix.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{ pkgs, config, ... }: {
|
||||
stylix = {
|
||||
enable = true;
|
||||
image = /home/${config.conf.username}/Pictures/backgrounds/shinobu_2k.jpg;
|
||||
polarity = "dark";
|
||||
|
||||
fonts = {
|
||||
serif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Serif";
|
||||
};
|
||||
|
||||
sansSerif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Sans";
|
||||
};
|
||||
|
||||
monospace = {
|
||||
package = (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; });
|
||||
# name = "JetBrains Mono Nerd";
|
||||
name = "JetBrainsMono Nerd Font Mono";
|
||||
};
|
||||
|
||||
emoji = {
|
||||
package = pkgs.noto-fonts-emoji;
|
||||
name = "Noto Color Emoji";
|
||||
};
|
||||
};
|
||||
|
||||
cursor = {
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Classic";
|
||||
size = 24;
|
||||
};
|
||||
|
||||
base16Scheme = config.conf.colorscheme;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue