Fonts fixes

This commit is contained in:
Henry Sipp
2025-07-01 19:59:16 +00:00
parent 127438c163
commit e030d67708
4 changed files with 24 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
{...}: {
fonts.fontconfig = {
enable = true;
defaultFonts = {
serif = ["Noto Serif"];
sansSerif = ["Noto Sans"];
monospace = ["Caskaydia Mono Nerd Font"];
};
};
}
-1
View File
@@ -12,5 +12,4 @@ in {
(import ./1password.nix)
(import ./podman.nix)
];
}
+13 -2
View File
@@ -2,7 +2,12 @@
config,
pkgs,
...
}: {
}:
let
cfg = config.omarchy;
packages = import ../packages.nix { inherit pkgs; };
in {
security.rtkit.enable = true;
services.pulseaudio.enable = false;
services.pipewire = {
@@ -24,8 +29,14 @@
# Networking
services.resolved.enable = true;
networking = {
hostName = hostConfig.name;
hostName = cfg.hostname;
networkmanager.enable = true;
};
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-emoji
nerd-fonts.caskaydia-mono
];
# services.samba.enable = true;
}