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; [
noto-fonts
noto-fonts-emoji
(nerdfonts.override {fonts = ["JetBrainsMono"];})
nerd-fonts.jetbrains-mono
monaspace
];
};

View File

@ -1,7 +1,7 @@
{
lib,
config,
pkgs,
pkgs-stable,
...
}: {
options = {
@ -12,7 +12,7 @@
stylix = {
enable = true;
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/tokyo-night-dark.yaml";
polarity = "dark";
@ -20,7 +20,7 @@
# Set the cursor theme.
cursor = {
package = pkgs.bibata-cursors;
package = pkgs-stable.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 24;
};
@ -35,7 +35,7 @@
monospace = {
name = "JetBrainsMono Nerd Font";
package = pkgs.nerdfonts.override {fonts = ["JetBrainsMono"];};
package = (pkgs-stable.nerdfonts.override { fonts = [ "JetBrainsMono" ]; });
};
};
};