mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
microcode
This commit is contained in:
parent
442185fa2d
commit
67e320c948
2 changed files with 8 additions and 3 deletions
|
|
@ -32,7 +32,11 @@
|
|||
fileSystems."/storage" = {
|
||||
device = "/dev/disk/by-label/storage";
|
||||
fsType = "btrfs";
|
||||
options = [ "compress=zstd" "noatime" "nofail" ];
|
||||
options = [
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
"nofail"
|
||||
];
|
||||
};
|
||||
|
||||
networking.nftables.enable = true;
|
||||
|
|
@ -58,11 +62,11 @@
|
|||
networking.defaultGateway = "192.168.0.1";
|
||||
|
||||
# Explicitly configure NetworkManager to use systemd-resolved for DNS handling.
|
||||
networking.networkmanager.dns = "systemd-resolved";
|
||||
networking.networkmanager.dns = "systemd-resolved";
|
||||
services.resolved = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
DNS=9.9.9.9 192.168.0.1
|
||||
DNS=192.168.0.1 9.9.9.9
|
||||
DNSStubListener=no
|
||||
'';
|
||||
};
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
];
|
||||
|
||||
config = {
|
||||
hardware.cpu.amd.updateMicrocode = true;
|
||||
# Wait for network to be online
|
||||
# systemd.services.NetworkManager-wait-online.enable = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue