1
0

pkgs/nixfiles: move nixfiles-auto-install to pkg

This commit is contained in:
2023-10-20 23:45:43 +02:00
parent b9af028fa7
commit 24b8e750b5
5 changed files with 78 additions and 68 deletions

View File

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