10 lines
173 B
Bash
10 lines
173 B
Bash
#! /usr/bin/env bash
|
|
|
|
# Nix repl with loaded configuration
|
|
|
|
cd /etc/nixos || exit 1
|
|
|
|
nix run .#genflake flake.nix &&
|
|
sleep 0.1 &&
|
|
git add . &&
|
|
nixos-rebuild repl "$@"
|