mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-17 03:53:59 +05:30
9 lines
209 B
Bash
Executable file
9 lines
209 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Script to update my flake without
|
|
# synchronizing configuration
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
# Update flake
|
|
sudo nix flake update $SCRIPT_DIR;
|