Nix : Rebuild with --refresh.

This commit is contained in:
Dmitry Voronin 2024-03-04 04:08:40 +03:00
parent dbf72d99f9
commit 1a4587a9bd

View file

@ -7,7 +7,7 @@ function nix_rebuild() {
local target="${1}" local target="${1}"
[[ "${target}" = "" ]] && target="${HOSTNAME}" [[ "${target}" = "" ]] && target="${HOSTNAME}"
nixos-rebuild boot --flake "${_nix_system_config}#${target}" nixos-rebuild boot --flake "${_nix_system_config}#${target}" --refresh
} }
# Rebuild and switch system. # Rebuild and switch system.
@ -17,13 +17,13 @@ function nix_switch() {
local target="${1}" local target="${1}"
[[ "${target}" = "" ]] && target="${HOSTNAME}" [[ "${target}" = "" ]] && target="${HOSTNAME}"
nixos-rebuild switch --flake "${_nix_system_config}#${target}" nixos-rebuild switch --flake "${_nix_system_config}#${target}" --refresh
} }
# Update system versions. # Update system versions.
# Usage: nix_update # Usage: nix_update
function nix_update() { function nix_update() {
nix flake update "${_nix_system_config}" nix flake update
} }
# Spawn shell with specified nix environment. # Spawn shell with specified nix environment.