From 6b5371671248253e45b7d8c9cdbe9a15df6fdc87 Mon Sep 17 00:00:00 2001 From: xnm Date: Mon, 22 Jul 2024 17:17:59 +0300 Subject: [PATCH] Fix NixOS config for compatibility with unstable channel - Fixed compatibility issues with the unstable channel - Added new packages (`firebase-tools`, `wrl-randr`) --- nixos/info-fetchers.nix | 1 + nixos/sound.nix | 1 - nixos/work.nix | 1 + nixos/yubikey.nix | 2 +- 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/info-fetchers.nix b/nixos/info-fetchers.nix index b38e8df..5ceac78 100644 --- a/nixos/info-fetchers.nix +++ b/nixos/info-fetchers.nix @@ -21,6 +21,7 @@ # vdpauinfo # libva-utils # nvtop + wlr-randr gpu-viewer dig speedtest-rs diff --git a/nixos/sound.nix b/nixos/sound.nix index d7a435d..45857b0 100644 --- a/nixos/sound.nix +++ b/nixos/sound.nix @@ -2,7 +2,6 @@ { # Enable sound with pipewire. - sound.enable = true; hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { diff --git a/nixos/work.nix b/nixos/work.nix index 2f5b6ff..ac71809 100644 --- a/nixos/work.nix +++ b/nixos/work.nix @@ -8,5 +8,6 @@ cargo-lambda gnumake cmake + firebase-tools ]; } diff --git a/nixos/yubikey.nix b/nixos/yubikey.nix index 11cede9..c4369c9 100644 --- a/nixos/yubikey.nix +++ b/nixos/yubikey.nix @@ -8,7 +8,7 @@ # FIXME Don't forget to create an authorization mapping file for your user (https://nixos.wiki/wiki/Yubikey#pam_u2f) security.pam.u2f = { enable = true; - cue = true; + settings.cue = true; control = "sufficient"; };