From 86f23077ea3c11ff6d9c5359bddc6b80303c9120 Mon Sep 17 00:00:00 2001 From: 2mal3 <56305732+2mal3@users.noreply.github.com> Date: Sat, 17 Jan 2026 15:17:46 +0100 Subject: [PATCH] refactor(nixos): rename update.sh to update.nu --- nixos/configuration.nix | 4 ++-- nixos/{update.sh => update.nu} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename nixos/{update.sh => update.nu} (100%) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 9ec3bfc..8036319 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -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"; diff --git a/nixos/update.sh b/nixos/update.nu similarity index 100% rename from nixos/update.sh rename to nixos/update.nu