This commit is contained in:
iofq 2024-08-10 02:17:24 -05:00
parent a897205c77
commit 0d9458d7cf
10 changed files with 112 additions and 110 deletions

View file

@ -29,6 +29,7 @@ in {
# Networking
networking = {
hostId = "1185c58e";
nameservers = ["1.1.1.1#one.one.one.one"];
networkmanager = {
enable = true;
dns = "systemd-resolved";
@ -108,6 +109,13 @@ in {
};
};
# workaround for wait-online killing nixos build
systemd.services.NetworkManager-wait-online = {
serviceConfig = {
ExecStart = ["" "${pkgs.networkmanager}/bin/nm-online -q"];
};
};
hardware.opengl = {
enable = true;
setLdLibraryPath = true;
@ -116,6 +124,7 @@ in {
pkgs.libGL
];
};
# Set a sane system-wide default font
fonts.packages = with pkgs; [
(nerdfonts.override {fonts = ["UbuntuMono"];})