Skip to content

Commit

Permalink
home-manager: Fix the fix
Browse files Browse the repository at this point in the history
`let` variables have priority over `with` imports, argh
  • Loading branch information
talyz committed Jan 27, 2021
1 parent a1dfdfa commit 48f3a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion home-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 157,7 @@ in
Service = {
ExecStart = "${startScript}";
ExecStop = "${stopScript}";
Environment = "PATH=${makeBinPath (with pkgs; [ coreutils utillinux gnugrep bindfs ])}:/run/wrappers/bin";
Environment = "PATH=${makeBinPath [ pkgs.coreutils pkgs.utillinux pkgs.gnugrep pkgs.bindfs ]}:/run/wrappers/bin";
};
};
};
Expand Down

0 comments on commit 48f3a30

Please sign in to comment.