font & stylix

This commit is contained in:
doloro
2025-09-23 10:35:48 +00:00
parent 37b92bb861
commit d95ea4ec27
12 changed files with 680 additions and 26 deletions

View File

@@ -15,5 +15,19 @@ in
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
programs.foot.enable = true;
# todo, split this into its own module;
programs.foot = {
enable = true;
settings = {
main = {
term = "xterm-256color";
#font = "CaskaydiaCove Nerd Font Mono:size=11";
};
mouse = {
hide-when-typing = "yes";
};
};
};
}

View File

@@ -0,0 +1,8 @@
{ inputs, pkgs, ... }:
let
in {
home.packages = with pkgs; [
wofi
];
}