home: direnv: update default flake

Now that I (usually?) override `nixpkgs` in the registry, there's not
much use in defaulting to `pkgs`.
This commit is contained in:
Bruno BELANYI 2024-04-15 14:06:21 +00:00
parent 06b760e3ee
commit 6a22a80d42
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ in
defaultFlake = mkOption {
type = types.str;
default = "pkgs";
example = "nixpkgs";
default = "nixpkgs";
example = "pkgs";
description = ''
Which flake from the registry should be used for
<command>use pkgs</command> by default.