Style change to stable and jetbrains mono font fix

This commit is contained in:
foglar 2024-12-02 15:48:32 +01:00
parent 0deea03cda
commit 4ddd425f92
2 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
noto-fonts noto-fonts
noto-fonts-emoji noto-fonts-emoji
(nerdfonts.override {fonts = ["JetBrainsMono"];}) nerd-fonts.jetbrains-mono
monaspace monaspace
]; ];
}; };

View File

@ -1,7 +1,7 @@
{ {
lib, lib,
config, config,
pkgs, pkgs-stable,
... ...
}: { }: {
options = { options = {
@ -12,7 +12,7 @@
stylix = { stylix = {
enable = true; enable = true;
image = ../../../config/backgrounds/aurora_borealis.png; image = ../../../config/backgrounds/aurora_borealis.png;
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml"; base16Scheme = "${pkgs-stable.base16-schemes}/share/themes/catppuccin-mocha.yaml";
#base16Scheme = "${pkgs.base16-schemes}/share/themes/onedark.yaml"; #base16Scheme = "${pkgs.base16-schemes}/share/themes/onedark.yaml";
#base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-dark.yaml"; #base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-dark.yaml";
polarity = "dark"; polarity = "dark";
@ -20,7 +20,7 @@
# Set the cursor theme. # Set the cursor theme.
cursor = { cursor = {
package = pkgs.bibata-cursors; package = pkgs-stable.bibata-cursors;
name = "Bibata-Modern-Ice"; name = "Bibata-Modern-Ice";
size = 24; size = 24;
}; };
@ -35,7 +35,7 @@
monospace = { monospace = {
name = "JetBrainsMono Nerd Font"; name = "JetBrainsMono Nerd Font";
package = pkgs.nerdfonts.override {fonts = ["JetBrainsMono"];}; package = (pkgs-stable.nerdfonts.override { fonts = [ "JetBrainsMono" ]; });
}; };
}; };
}; };