(T)im's N(ix) Flake, Multi-Host Configurations for all of my machines! 74k1.sh/
nixos nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore({pinentry,searchEngine}): more eval warnings

- Search engines are now referenced by id instead of by name, use 'ddg' instead of 'DuckDuckGo'

- The option `services.gpg-agent.pinentryPackage' defined in `/nix/store/1l4nm55xcq55cdp1xz3x5mfgr4c24058-source/flake.nix' has been renamed to `services.gpg-agent.pinentry.package'.

74k1 b8afe636 616c0753

+4 -4
+1 -1
hosts/darwin/arisu/darwin-home.nix
··· 47 47 defaultCacheTtl = 86400; 48 48 maxCacheTtl = 86400; 49 49 enableZshIntegration = true; 50 - pinentryPackage = pkgs.pinentry_mac; 50 + pinentry.package = pkgs.pinentry_mac; 51 51 enableSshSupport = true; 52 52 }; 53 53
+1 -1
hosts/nixos/eiri/home.nix
··· 43 43 defaultCacheTtl = 86400; 44 44 maxCacheTtl = 86400; 45 45 enableZshIntegration = true; 46 - pinentryPackage = pkgs.pinentry-curses; 46 + pinentry.package = pkgs.pinentry-curses; 47 47 enableSshSupport = true; 48 48 }; 49 49
+1 -1
modules/home-manager/apps/zen/default.nix
··· 28 28 icon = "https://kagi.com/favicon.ico"; 29 29 definedAliases = [ ":k" "@kagi" ]; 30 30 }; 31 - "DuckDuckGo" = { 31 + "ddg" = { 32 32 urls = [{ template = "https://duckduckgo.com/?t=h_&q={searchTerms}&ia=web"; }]; 33 33 icon = "https://icons.duckduckgo.com/ip3/duckduckgo.com.ico"; 34 34 definedAliases = [ ":d" "@ddg" "@duckduckgo" ];
+1 -1
modules/home-manager/gpg-agent/default.nix
··· 4 4 enable = true; 5 5 defaultCacheTtl = 86400; 6 6 maxCacheTtl = 86400; 7 - pinentryPackage = pkgs.pinentry-gnome3; # pinentry-mac for aarch64-darwin 7 + pinentry.package = pkgs.pinentry-gnome3; # pinentry-mac for aarch64-darwin 8 8 enableSshSupport = true; 9 9 }; 10 10