1
0

pkgs/nixfiles: expose nixfiles-generate-config as pkg

This commit is contained in:
2023-10-20 22:57:33 +02:00
parent 30cc2e4f15
commit b9af028fa7
5 changed files with 14 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "nixfiles-generate-config";
text = builtins.readFile ./nixfiles-generate-config.sh;
runtimeInputs = with pkgs; [
git
];
checkPhase = "";
}