7 lines
90 B
Bash
Executable file
7 lines
90 B
Bash
Executable file
#!/bin/sh
|
|
currentdir=$(pwd)
|
|
cd ~/.dotfiles
|
|
nix flake update
|
|
nix flake lock
|
|
cd $currentdir
|