dotfiles/scripts/update-nix
2024-08-21 10:10:13 -05:00

10 lines
164 B
Bash
Executable file

#!/bin/sh
currentdir=$(pwd)
if [[hostname == "kaladin"]]; then
cd ~/.config/dotfiles
else
cd ~/.dotfiles
fi
nix flake update
nix flake lock
cd $currentdir