12 lines
233 B
Nix
12 lines
233 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "nixfiles-auto-install";
|
|
text = builtins.readFile ./nixfiles-auto-install.sh;
|
|
runtimeInputs = with pkgs; [
|
|
git
|
|
nixfiles-generate-config
|
|
nixos-install-tools
|
|
];
|
|
}
|