1
0

pkgs/nixfiles: rename nixfiles-system-upgrade to clerie-system-upgrade

This commit is contained in:
2024-03-17 15:50:49 +01:00
parent 059aaa760b
commit 23d05a3e5d
5 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "clerie-system-upgrade";
text = builtins.readFile ./clerie-system-upgrade.sh;
runtimeInputs = with pkgs; [
curl
jq
nix
];
}