In this directory we generate all the files that we need to load nixpkgs. This seems more robust than all those environment variables that may or not may be set.
11 lines
205 B
Nix
11 lines
205 B
Nix
{
|
|
inputs = {
|
|
# this placeholder is replaced by the path to nixpkgs
|
|
nixpkgs.url = "__NIXPKGS__";
|
|
};
|
|
|
|
outputs = _inputs: {
|
|
clanModules.machine-machine1 = ./clanModules/machine1.nix;
|
|
};
|
|
}
|