From ccb9f5358a86c8ecd82f50913b3b8f5d1e0a62f3 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 31 Jan 2024 17:34:34 +0300 Subject: [PATCH] Nix : Rebuild on boot. --- .config/bash/module/Nix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/bash/module/Nix.sh b/.config/bash/module/Nix.sh index b530705..a8dc5bf 100644 --- a/.config/bash/module/Nix.sh +++ b/.config/bash/module/Nix.sh @@ -42,7 +42,7 @@ function nix_rebuild() { [[ "${target}" = "" ]] && target="${HOSTNAME}" cd ${HOME}/.config/linux/system - nixos-rebuild switch --flake .#${target} + nixos-rebuild boot --flake .#${target} cd - }