1
0

pkgs/nixfiles: rename nixfiles-updated-inputs to clerie-update-nixfiles

This commit is contained in:
2024-03-17 16:14:54 +01:00
parent 23d05a3e5d
commit 7a4177f360
6 changed files with 11 additions and 11 deletions

View File

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