Jordan Holt 9b32748bb4
All checks were successful
Check flake / build-amd64-linux (push) Successful in 3m38s
hyprland: set default sans serif font
2025-03-24 15:01:33 +00:00

33 lines
486 B
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib)
mkEnableOption
mkIf
;
cfg = config.modules.system.desktop.hyprland;
in
{
options.modules.system.desktop.hyprland.enable = mkEnableOption "hyprland";
config = mkIf cfg.enable {
services.displayManager.ly.enable = true;
networking.networkmanager.enable = true;
programs.hyprland = {
enable = true;
# withUWSM = true;
};
fonts.packages = [
pkgs.segoe-ui-ttf
];
};
}