Files
clan-core/pkgs/clan-cli/tests/machine_flake/flake.nix
Jörg Thalheim fb7c77690a replace environment variable with nixpkgs directory
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.
2023-08-26 11:45:09 +02:00

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;
};
}