forked from Shinonome/omarchy-nix
Fonts fixes
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
{...}: {
|
||||
fonts.fontconfig = {
|
||||
enable = true;
|
||||
defaultFonts = {
|
||||
serif = ["Noto Serif"];
|
||||
sansSerif = ["Noto Sans"];
|
||||
monospace = ["Caskaydia Mono Nerd Font"];
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -4,7 +4,7 @@
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.omarchy;
|
||||
cfg = config.omarchy;
|
||||
in {
|
||||
imports = [
|
||||
./autostart.nix
|
||||
|
||||
@@ -12,5 +12,4 @@ in {
|
||||
(import ./1password.nix)
|
||||
(import ./podman.nix)
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user