diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-05-23 11:30:03 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-05-23 11:30:03 -0700 |
commit | 39c1ff5628d6ea78ad3736c8a54ad5b836c61205 (patch) | |
tree | 23d5b2a7d526354ce6f4623b844b650198c861cf /home | |
parent | 9f5139a2c1bfd95120946c62baa56f64c9dc2b35 (diff) | |
download | nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.gz nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.bz2 nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.lz nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.xz nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.zst nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.zip |
Remove some uses of with
Diffstat (limited to 'home')
-rw-r--r-- | home/nipsy/common/optional/desktops/default.nix | 4 |
1 files changed, 2 insertions, 2 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"; |