10 lines
148 B
Nix
10 lines
148 B
Nix
|
{substituteAll, nix}:
|
||
|
|
||
|
substituteAll {
|
||
|
name = "nixos-rebuild";
|
||
|
src = ./nixos-rebuild.sh;
|
||
|
dir = "bin";
|
||
|
isExecutable = true;
|
||
|
inherit nix;
|
||
|
}
|