2024-02-26 14:17:34 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
writeShellApplication,
|
|
|
|
}:
|
|
|
|
writeShellApplication
|
|
|
|
{
|
|
|
|
name = "rebuild";
|
|
|
|
|
|
|
|
runtimeInputs = [];
|
|
|
|
|
|
|
|
text = ''
|
|
|
|
# A rebuild script for NixOS
|
2024-03-02 17:39:24 +01:00
|
|
|
sudo systemd-inhibit --who="NixOS Updater" --why="Updating system configuration" rebuild-no-inhibit
|
2024-02-26 14:17:34 +01:00
|
|
|
'';
|
|
|
|
}
|