6 lines
84 B
Bash
6 lines
84 B
Bash
#!/bin/sh
|
|
currentdir=$(pwd)
|
|
cd ~/conf
|
|
nix flake update
|
|
nix flake lock
|
|
cd $currentdir |