Skip to content

Commit

Permalink
fix nixpkgs nix path entry
Browse files Browse the repository at this point in the history
  • Loading branch information
NyCodeGHG committed Sep 18, 2024
1 parent efb4ca2 commit 527daeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/nixos/applications/nix.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, lib, inputs, ... }:
{ config, lib, ... }:
{
options.uwumarie.profiles.nix = lib.mkEnableOption (lib.mdDoc "nix config") // {
default = true;
Expand All @@ -18,7 +18,7 @@
};
# registry.nixpkgs.flake = inputs.nixpkgs;
nixPath = [
"nixpkgs=${inputs.nixpkgs}"
"nixpkgs=${config.nixpkgs.flake.source}"
];
};
};
Expand Down

0 comments on commit 527daeb

Please sign in to comment.