added fonts

This commit is contained in:
biscuit
2025-05-19 20:33:56 -05:00
parent 52356a4a87
commit 53346c17ea
3 changed files with 8 additions and 2 deletions
+1
View File
@@ -1,5 +1,6 @@
{...}: { {...}: {
imports = [ imports = [
../system/wayland.nix ../system/wayland.nix
../system/font.nix
]; ];
} }
+2 -2
View File
@@ -118,7 +118,7 @@
bind = bind =
[ [
"$mod, Return, exec, $terminal" "$mod, Return, exec, $term"
"$mod, Q, killactive," "$mod, Q, killactive,"
"$mod, M, exit," "$mod, M, exit,"
"$mod, E, exec, $fileManager" "$mod, E, exec, $fileManager"
@@ -149,7 +149,7 @@
"$mod SHIFT, ${toString ws}, movetoworkspace, ${toString ws}" "$mod SHIFT, ${toString ws}, movetoworkspace, ${toString ws}"
] ]
) )
10) 9)
); );
bindm = [ bindm = [
+5
View File
@@ -0,0 +1,5 @@
{pkgs, ...}: {
fonts.packages = with pkgs; [
nerdfonts
];
}