1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-05-12 17:15:30 +02:00
commit 4d6de9beb2
No known key found for this signature in database
7 changed files with 1016 additions and 0 deletions

15
package.nix Normal file
View file

@ -0,0 +1,15 @@
{
writeShellApplication,
nixos-rebuild,
openssh,
}:
writeShellApplication {
name = "nini";
runtimeInputs = [
nixos-rebuild
openssh
];
text = builtins.readFile ./nini;
}