1
0
Fork 0
nixfiles/pkgs/nixfiles/nixfiles-updated-inputs.nix

13 lines
205 B
Nix

{ pkgs, ... }:
pkgs.writeShellApplication {
name = "nixfiles-updated-inputs";
text = builtins.readFile ./nixfiles-updated-inputs.sh;
runtimeInputs = with pkgs; [
git
nix
openssh
];
}