mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 15:13:55 -05:00
nixos: fix zed font troubles with explicit fonts in desktop module
This commit is contained in:
parent
ea4cfea175
commit
27b3fe91a6
|
@ -166,11 +166,11 @@
|
|||
},
|
||||
"nixpkgs-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1722421184,
|
||||
"narHash": "sha256-/DJBI6trCeVnasdjUo9pbnodCLZcFqnVZiLUfqLH4jA=",
|
||||
"lastModified": 1722630782,
|
||||
"narHash": "sha256-hMyG9/WlUi0Ho9VkRrrez7SeNlDzLxalm9FwY7n/Noo=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "9f918d616c5321ad374ae6cb5ea89c9e04bf3e58",
|
||||
"rev": "d04953086551086b44b6f3c6b7eeb26294f207da",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -13,6 +13,7 @@ in {
|
|||
gnome.adwaita-icon-theme
|
||||
liberation_ttf
|
||||
vegur
|
||||
(nerdfonts.override {fonts = ["UbuntuSans"];})
|
||||
];
|
||||
|
||||
pointerCursor = {
|
||||
|
@ -30,6 +31,7 @@ in {
|
|||
|
||||
fonts.fontconfig = {
|
||||
enable = true;
|
||||
|
||||
defaultFonts = {
|
||||
monospace = ["UbuntuSansMono Nerd Font"];
|
||||
serif = ["Vegur"];
|
||||
|
|
|
@ -22,7 +22,9 @@
|
|||
};
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
(nerdfonts.override {fonts = ["UbuntuSans"];})
|
||||
liberation_ttf
|
||||
vegur
|
||||
];
|
||||
|
||||
hardware.logitech.wireless = {
|
||||
|
|
Loading…
Reference in a new issue