Update system

This commit is contained in:
2024-06-22 20:09:49 -05:00
parent 4e6cf6bf92
commit 1e7cb6da53
2 changed files with 15 additions and 12 deletions

18
flake.lock generated
View File

@@ -58,11 +58,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1718526747, "lastModified": 1719037157,
"narHash": "sha256-sKrD/utGvmtQALvuDj4j0CT3AJXP1idOAq2p+27TpeE=", "narHash": "sha256-aOKd8+mhBsLQChCu1mn/W5ww79ta5cXVE59aJFrifM8=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "0a7ffb28e5df5844d0e8039c9833d7075cdee792", "rev": "cd886711998fe5d9ff7979fdd4b4cbd17b1f1511",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -89,11 +89,11 @@
}, },
"nixpkgs-stable": { "nixpkgs-stable": {
"locked": { "locked": {
"lastModified": 1718437845, "lastModified": 1718835956,
"narHash": "sha256-ZT7Oc1g4I4pHVGGjQFnewFVDRLH5cIZhEzODLz9YXeY=", "narHash": "sha256-wM9v2yIxClRYsGHut5vHICZTK7xdrUGfrLkXvSuv6s4=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "752c634c09ceb50c45e751f8791cb45cb3d46c9e", "rev": "dd457de7e08c6d06789b1f5b88fc9327f4d96309",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -121,11 +121,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1718318537, "lastModified": 1718895438,
"narHash": "sha256-4Zu0RYRcAY/VWuu6awwq4opuiD//ahpc2aFHg2CWqFY=", "narHash": "sha256-k3JqJrkdoYwE3fHE6xGDY676AYmyh4U2Zw+0Bwe5DLU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e9ee548d90ff586a6471b4ae80ae9cfcbceb3420", "rev": "d603719ec6e294f034936c0d0dc06f689d91b6c3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -39,6 +39,9 @@ in
fonts = { fonts = {
packages = with pkgs; [ packages = with pkgs; [
liberation_ttf liberation_ttf
noto-fonts
noto-fonts-cjk
noto-fonts-extra
ubuntu_font_family ubuntu_font_family
vazir-fonts vazir-fonts
font-awesome font-awesome
@@ -46,9 +49,9 @@ in
fontconfig = { fontconfig = {
defaultFonts = { defaultFonts = {
serif = [ "Liberation Serif" "Vazirmatn" ]; serif = [ "Noto Serif" "Noto Serif CJK JP" ];
sansSerif = [ "Ubuntu" "Vazirmatn" ]; sansSerif = [ "Noto Sans" "Noto Sans CJK JP" ];
monospace = [ "Ubuntu Mono" ]; monospace = [ "Ubuntu Mono" "Noto Sans Mono CJK JP" ];
}; };
}; };
}; };