From 39c1ff5628d6ea78ad3736c8a54ad5b836c61205 Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Fri, 23 May 2025 11:30:03 -0700 Subject: Remove some uses of with --- home/nipsy/common/optional/desktops/default.nix | 4 ++-- hosts/common/optional/misc.nix | 4 ++-- hosts/ginaz/hardware-configuration.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/home/nipsy/common/optional/desktops/default.nix b/home/nipsy/common/optional/desktops/default.nix index 26e369a..5f5b4b0 100644 --- a/home/nipsy/common/optional/desktops/default.nix +++ b/home/nipsy/common/optional/desktops/default.nix @@ -9,8 +9,8 @@ programs.password-store = { enable = true; - package = pkgs.pass.withExtensions (exts: with exts; [ - pass-otp + package = pkgs.pass.withExtensions (exts: [ + exts.pass-otp ]); settings = { PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store"; diff --git a/hosts/common/optional/misc.nix b/hosts/common/optional/misc.nix index cb44055..df71ea0 100644 --- a/hosts/common/optional/misc.nix +++ b/hosts/common/optional/misc.nix @@ -30,8 +30,8 @@ plugins = with availablePlugins; [ (perl.withPackages(p: [ p.PodParser ])) ] ++ [ python ]; - scripts = with pkgs.weechatScripts; [ - wee-slack + scripts = [ + pkgs.weechatScripts.wee-slack ]; }; }) diff --git a/hosts/ginaz/hardware-configuration.nix b/hosts/ginaz/hardware-configuration.nix index 24f60cd..670a58c 100644 --- a/hosts/ginaz/hardware-configuration.nix +++ b/hosts/ginaz/hardware-configuration.nix @@ -23,8 +23,8 @@ graphics = { enable = true; - extraPackages = with pkgs; [ nvidia-vaapi-driver ]; - extraPackages32 = with pkgs.pkgsi686Linux; [ nvidia-vaapi-driver ]; + extraPackages = [ pkgs.nvidia-vaapi-driver ]; + extraPackages32 = [ pkgs.pkgsi686Linux.nvidia-vaapi-driver ]; }; nvidia = let -- cgit v1.2.3