1
0
Fork 0
mirror of https://git.sr.ht/~azikx/karbur synced 2024-10-30 05:26:20 +00:00

update 

This commit is contained in:
azikx 2024-10-23 22:35:12 +09:00
parent 3e85a51223
commit be469cabe8
2 changed files with 8 additions and 1 deletions

View file

@ -4,6 +4,7 @@
networkmanager = { # NETWORK MANAGER
enable = true;
insertNameservers = [ "1.1.1.1" "1.0.0.1" ];
dns = "systemd-resolved";
wifi.powersave = true;
};
useDHCP = lib.mkDefault true;

View file

@ -1,4 +1,5 @@
{ ... }: {
{ inputs, ... }: {
imports = [ inputs.nix-gaming.nixosModules.pipewireLowLatency ];
security.rtkit.enable = true;
services.pipewire = { # SOUND NEW GEN
enable = true;
@ -8,5 +9,10 @@
enable = true;
support32Bit = true;
};
lowLatency = {
enable = true;
quantum = 64;
rate = 48000;
};
};
}