1
0

pkgs/nixfiles: Package nixfiles utility scripts

This commit is contained in:
2023-09-01 17:23:53 +02:00
parent cf63ea90ac
commit 6322949026
9 changed files with 82 additions and 34 deletions

View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "nixfiles-update-ssh-host-keys";
text = builtins.readFile ./nixfiles-update-ssh-host-keys.sh;
runtimeInputs = with pkgs; [
git
nix
openssh
];
}