11 lines
205 B
Nix
11 lines
205 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "nixfiles-generate-config";
|
|
text = builtins.readFile ./nixfiles-generate-config.sh;
|
|
runtimeInputs = with pkgs; [
|
|
git
|
|
];
|
|
checkPhase = "";
|
|
}
|