From a92a69092c9697c28bc32d60ba83c95caa0219b9 Mon Sep 17 00:00:00 2001 From: SindreKjelsrud Date: Thu, 29 May 2025 10:26:09 +0200 Subject: [PATCH] :rotating_light: Fix nix-eval warnings - `The option `services.gpg-agent.pinentryPackage' defined in '/nix/store/x' has been renamed to `services.gpg-agent.pinentry.package'.` - `The option `hardware.pulseaudio' defined in '/nix/store/x' has been renamed to `services.pulseaudio'.` Signed-off-by: SindreKjelsrud --- hosts/wano/configuration.nix | 2 +- hosts/wano/home.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/wano/configuration.nix b/hosts/wano/configuration.nix index deb3564..cd5bc94 100644 --- a/hosts/wano/configuration.nix +++ b/hosts/wano/configuration.nix @@ -62,7 +62,7 @@ services.printing.enable = true; # Enable sound with pipewire. - hardware.pulseaudio.enable = false; + services.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { enable = true; diff --git a/hosts/wano/home.nix b/hosts/wano/home.nix index 552fd30..da24e5d 100644 --- a/hosts/wano/home.nix +++ b/hosts/wano/home.nix @@ -71,6 +71,6 @@ # GPG setup services.gpg-agent = { enable = true; - pinentryPackage = pkgs.pinentry-curses; + pinentry.package = pkgs.pinentry-curses; }; }