2025-02-16 16:15:35 -05:00
|
|
|
#!/usr/bin/env nu
|
2025-04-01 01:26:52 -04:00
|
|
|
def --wrapped rebuild [subcmd: string, ...rest] {
|
2025-02-16 16:15:35 -05:00
|
|
|
nix fmt
|
|
|
|
git add -A # make sure the goddamn files are added because nix stores won't include unchecked files
|
2025-04-01 01:26:52 -04:00
|
|
|
let r = echo ...$rest | into string;
|
|
|
|
nix-shell -p nixos-rebuild --command $"sudo nixos-rebuild --flake . ($subcmd) ($r)";
|
2025-02-16 16:15:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
def --wrapped "main switch" [
|
|
|
|
...rest
|
|
|
|
] {
|
2025-04-01 01:26:52 -04:00
|
|
|
rebuild switch ...$rest
|
2025-02-16 16:15:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
def --wrapped "main boot" [
|
|
|
|
--restart (-r) # restart after building
|
|
|
|
...rest
|
|
|
|
] {
|
2025-04-01 01:26:52 -04:00
|
|
|
rebuild boot ...$rest
|
2025-02-16 16:15:35 -05:00
|
|
|
if $restart {
|
2025-04-01 01:26:52 -04:00
|
|
|
sudo reboot now
|
2025-02-16 16:15:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def main [] {
|
2025-04-01 01:26:52 -04:00
|
|
|
main switch
|
2025-02-16 16:15:35 -05:00
|
|
|
}
|