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