mirror of
https://github.com/danbulant/dotfiles
synced 2026-05-19 04:18:55 +00:00
10 lines
227 B
Bash
10 lines
227 B
Bash
if [ -z "$(which nh)" ]; then
|
|
cd /etc/nixos
|
|
sudo nix-channel --update
|
|
sudo nix flake update
|
|
sudo nixos-rebuild --upgrade switch
|
|
else
|
|
sudo nix-channel --update
|
|
sudo nix flake update
|
|
nh os switch .
|
|
fi
|