Add note for nixtamal in home-manager / other configs in README.md - #237
Conversation
|
By the way somewhere in the README.md there's pkgs = import sources.nixpkgs {
config.allowUnfree = true;
};
nixcord = import sources.nixcord { inherit pkgs; };but I noticed in the default.nix pkgs is this by default pkgs ? import nixpkgs {
inherit system;
config.allowUnfree = true;
}So why not write this instead in the README: nixcord = import sources.nixcord { };? |
I checked this against your Home Manager provides Your That is why this works: nixcord = import nixtamal.nixcord {
nixpkgs = nixtamal.nixpkgs;
};
That works too. When neither Passing an existing Passing |
8d1590e to
dfbbe16
Compare
dfbbe16 to
a605bf6
Compare
Ohhh okay understood, so it was indeed home-manager's fault Have a great day 👍 |
In my case I couldn't use pkgs (because of some infinite recursion error) so here's an update to the readme for people who have these kinds of niche configs
(also made the reuse text bold)