feat: remove systemd annoying errors
This commit is contained in:
parent
f7e34c54d6
commit
955bf3c105
3 changed files with 13 additions and 13 deletions
|
|
@ -20,7 +20,7 @@
|
|||
"sd_mod"
|
||||
"xhci_pci"
|
||||
];
|
||||
kernelParams = [ "amd_pstate=active" "usbcore.autosuspend=-1"];
|
||||
kernelParams = [ "amd_pstate=active" "usbcore.autosuspend=-1" ];
|
||||
initrd.kernelModules = [ ];
|
||||
kernelModules = [ "kvm-amd" "iwlwifi" ];
|
||||
extraModulePackages = [ ];
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@
|
|||
firewall = {
|
||||
enable = true;
|
||||
allowPing = true;
|
||||
allowedTCPPorts = [2375 4780 11470 25565];
|
||||
allowedUDPPorts = [3478 41641 8888 8899];
|
||||
allowedTCPPorts = [ 2375 4780 11470 25565 ];
|
||||
allowedUDPPorts = [ 3478 41641 8888 8899 ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
services.docker.serviceConfig = {
|
||||
StandardOutput = "journal";
|
||||
StandardError = "journal";
|
||||
logFilterPatterns = [ ".*skip loading plugin.*" "skip plugin"];
|
||||
logFilterPatterns = [ ".*skip loading plugin.*" "skip plugin" ];
|
||||
};
|
||||
tmpfiles.rules = [
|
||||
"d /usr/local/share/polkit-1 0755 root root -"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue