Update to 23.11!!

This commit is contained in:
Natsu Kagami 2023-12-01 22:05:54 +01:00
parent fb9d120c37
commit 32c9474e7e
Signed by: nki
GPG key ID: 55A032EB38B49ADB
11 changed files with 29 additions and 55 deletions

View file

@ -181,6 +181,8 @@ in
## Network configuration
systemd.network.enable = true;
networking.dhcpcd.enable = lib.mkForce false;
networking.useDHCP = false;
networking.useNetworkd = true;
systemd.network.wait-online.enable = false;
networking.hostName = cfg.networking.hostname;
networking.wireless.iwd.enable = true;
@ -267,6 +269,10 @@ in
wlr.enable = true;
# gtk portal needed to make gtk apps happy
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
config.common.default = [ "gtk" ];
config.common."org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
config.sway.default = [ "wlr" "gtk" ];
};
# D-Bus
services.dbus.packages = with pkgs; [ gcr ];

View file

@ -23,7 +23,7 @@ in
imports = [ ./mounting.nix ];
# Fonts
config.fonts = {
fonts = with pkgs; [
packages = with pkgs; [
noto-fonts-emoji-blob-bin
ibm-plex
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
@ -33,7 +33,7 @@ in
corefonts
];
} // (if pkgs.stdenv.isLinux then {
enableDefaultFonts = false;
enableDefaultPackages = false;
fontconfig = {
defaultFonts = {
emoji = lib.mkBefore [ "Blobmoji" ];

View file

@ -18,7 +18,7 @@ lib.mkIf pkgs.stdenv.isLinux {
};
aggregatedFonts = pkgs.buildEnv {
name = "system-fonts";
paths = config.fonts.fonts;
paths = config.fonts.packages;
pathsToLink = [ "/share/fonts" ];
};
in