Skip to content

Commit

Permalink
fix(nix): conflicting nix.package options
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Oct 25, 2024
1 parent e148226 commit 68e3583
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions home-manager/shared.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ pkgs, ... }: {
{ pkgs, lib, ... }: {
nix = {
package = pkgs.nix;
package = lib.mkDefault pkgs.nix;
extraOptions = ''
keep-outputs = true
keep-derivations = true
Expand Down
4 changes: 2 additions & 2 deletions nixos-modules/common.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ pkgs, ... }: {
{ pkgs, lib, ... }: {
nix = {
package = pkgs.nix;
package = lib.mkDefault pkgs.nix;
extraOptions = ''
keep-outputs = true
keep-derivations = true
Expand Down

0 comments on commit 68e3583

Please sign in to comment.