configure fonts via stylix
This commit is contained in:
parent
4d107d3e4a
commit
8926441e62
1 changed files with 19 additions and 6 deletions
25
home.nix
25
home.nix
|
@ -194,10 +194,10 @@
|
|||
kitty = {
|
||||
enable = true;
|
||||
shellIntegration.enableFishIntegration = true;
|
||||
font = {
|
||||
name = lib.mkForce "Iosevka Nerd Font";
|
||||
size = lib.mkForce 14;
|
||||
};
|
||||
# font = {
|
||||
# name = lib.mkForce "Iosevka Nerd Font";
|
||||
# size = lib.mkForce 14;
|
||||
# };
|
||||
keybindings = {
|
||||
"ctrl+shift+g" = "show_last_command_output";
|
||||
"ctrl+alt+enter" = "launch --cwd=current";
|
||||
|
@ -490,10 +490,23 @@
|
|||
};
|
||||
|
||||
stylix = {
|
||||
enable = true;
|
||||
image = /home/muhh/Sync/Backgrounds/wald.jpg;
|
||||
polarity = "dark";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||
#base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
||||
fonts = {
|
||||
monospace = {
|
||||
package = (pkgs.nerdfonts.override { fonts = [ "Iosevka" ]; });
|
||||
name = "Iosevka Nerd Font";
|
||||
};
|
||||
sizes = {
|
||||
applications = 12;
|
||||
desktop = 10;
|
||||
popups = 10;
|
||||
terminal = 14;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
wayland.windowManager = {
|
||||
|
|
Loading…
Reference in a new issue