refactor(nixos): rename update.sh to update.nu

This commit is contained in:
2026-01-17 15:17:46 +01:00
parent 47d462ba76
commit 86f23077ea
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -116,7 +116,7 @@
after = ["network-online.target"];
wants = ["network-online.target"];
path = config.environment.systemPackages;
script = "nu ${./update.sh}";
script = "nu ${./update.nu}";
serviceConfig = {
WorkingDirectory = "/home/mudics/mudics";
User = "mudics";
@@ -155,7 +155,7 @@
systemd.services.enable-wol = {
wantedBy = ["multi-user.target"];
after = ["network.target"];
path = with pkgs; [ ethtool nushell ];
path = with pkgs; [ethtool nushell];
script = "nu ${./wol.nu}";
serviceConfig = {
Type = "oneshot";
View File