From fe04b02a4da58b28010dbbfcee74d49d824ad230 Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Sun, 22 Mar 2026 22:05:32 +0100 Subject: [PATCH] fix: configuration again --- .gitignore | 3 ++- configuration.nix | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e866a93..37e1a79 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ hardware-configuration.nix install-local.nix *.pdf -install_pc.sh \ No newline at end of file +install_pc.sh +falta.md \ No newline at end of file diff --git a/configuration.nix b/configuration.nix index b1c67cb..cdbeb44 100644 --- a/configuration.nix +++ b/configuration.nix @@ -359,10 +359,10 @@ in }; systemd.services.lab-updater = { description = "actualizaciones automáticas del sistema"; - path = with pkgs; [ git nix coreutils systemd util-linux libnotify config.system.build.nixos-rebuild ]; + path = with pkgs; [ git nix coreutils systemd util-linux libnotify config.system.build.nixos-rebuild bash ]; serviceConfig = { Type = "oneshot"; - ExecStart = "/etc/nixos/update.sh"; + ExecStart = "${pkgs.bash}/bin/bash /etc/nixos/update.sh"; }; };