diff options
Diffstat (limited to 'modules/common/shell/default.nix')
-rw-r--r-- | modules/common/shell/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/common/shell/default.nix b/modules/common/shell/default.nix index cacb411..6c0b78f 100644 --- a/modules/common/shell/default.nix +++ b/modules/common/shell/default.nix @@ -80,7 +80,7 @@ in let pkg = if this.isHeadful then - (pkgs.coreutils.overrideAttrs ( + pkgs.coreutils.overrideAttrs ( _: super: { patches = (super.patches or [ ]) ++ [ (pkgs.fetchpatch { @@ -89,7 +89,7 @@ in }) ]; } - )) + ) else pkgs.coreutils; in |