From 24ea763f2aa36c7df57bcb89e34773be66b5ce41 Mon Sep 17 00:00:00 2001 From: cy Date: Tue, 20 May 2025 14:54:24 -0400 Subject: [PATCH] install pavucontrol; fix pw.conf; updateMicrocode to true --- home/yt/ytnix.nix | 1 + hosts/ytnix/default.nix | 26 ++++++++++++++------------ hosts/ytnix/hardware-configuration.nix | 2 +- 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/home/yt/ytnix.nix b/home/yt/ytnix.nix index ffc0360..d97e4bf 100644 --- a/home/yt/ytnix.nix +++ b/home/yt/ytnix.nix @@ -84,6 +84,7 @@ jujutsu ffmpeg typst + pavucontrol # reversing radare2 diff --git a/hosts/ytnix/default.nix b/hosts/ytnix/default.nix index f75138d..ac0db6d 100644 --- a/hosts/ytnix/default.nix +++ b/hosts/ytnix/default.nix @@ -127,18 +127,20 @@ }; # https://wiki.archlinux.org/title/Bluetooth_headset#Connecting_works,_sound_plays_fine_until_headphones_become_idle,_then_stutters wireplumber.extraConfig.disableSuspend = { - "monitor.bluez.rules" = { - matches = [ - { - "node.name" = "bluez_output.*"; - } - ]; - }; - actions = { - update-props = { - "session.suspend-timeout-seconds" = 0; - }; - }; + "monitor.bluez.rules" = [ + { + matches = [ + { + "node.name" = "bluez_output.*"; + } + ]; + actions = { + update-props = { + "session.suspend-timeout-seconds" = 0; + }; + }; + } + ]; }; }; diff --git a/hosts/ytnix/hardware-configuration.nix b/hosts/ytnix/hardware-configuration.nix index c98a8c5..cd1c283 100644 --- a/hosts/ytnix/hardware-configuration.nix +++ b/hosts/ytnix/hardware-configuration.nix @@ -82,5 +82,5 @@ # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + hardware.cpu.intel.updateMicrocode = lib.mkDefault true; }