mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 05:56:15 +02:00
CmdSystem: init
This commit is contained in:
parent
2b621c8a55
commit
a2e3eee48f
6 changed files with 256 additions and 0 deletions
8
src/nix/system-activate.md
Normal file
8
src/nix/system-activate.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
R""(
|
||||
|
||||
# Description
|
||||
|
||||
This command activates NixOS configurations.
|
||||
|
||||
)""
|
||||
|
15
src/nix/system-apply.md
Normal file
15
src/nix/system-apply.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
R""(
|
||||
|
||||
# Description
|
||||
|
||||
This command activates NixOS configurations and sets it as the default boot configuration.
|
||||
|
||||
The `profile` parameter is used to specify the system profile to use.
|
||||
|
||||
The default system profile is `/nix/var/nix/profiles/system`.
|
||||
|
||||
A system profile named `hello` would be located at `/nix/var/nix/profiles/system-profiles/hello`.
|
||||
|
||||
)""
|
||||
|
||||
|
16
src/nix/system-boot.md
Normal file
16
src/nix/system-boot.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
R""(
|
||||
|
||||
# Description
|
||||
|
||||
This command sets the given NixOS configuration as the default boot configuration. It will be activated on the next boot.
|
||||
|
||||
The `profile` parameter is used to specify the system profile to use.
|
||||
|
||||
The default system profile is `/nix/var/nix/profiles/system`.
|
||||
|
||||
A system profile named `hello` would be located at `/nix/var/nix/profiles/system-profiles/hello`.
|
||||
|
||||
)""
|
||||
|
||||
|
||||
|
7
src/nix/system-build.md
Normal file
7
src/nix/system-build.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
R""(
|
||||
|
||||
# Description
|
||||
|
||||
This command builds NixOS configurations. The default attribute name is the current system hostname.
|
||||
|
||||
)""
|
203
src/nix/system.cc
Normal file
203
src/nix/system.cc
Normal file
|
@ -0,0 +1,203 @@
|
|||
#include "command.hh"
|
||||
#include "activatables.hh"
|
||||
#include "progress-bar.hh"
|
||||
|
||||
using namespace nix;
|
||||
|
||||
void executePrivileged(std::string program, Strings args) {
|
||||
stopProgressBar();
|
||||
restoreProcessContext();
|
||||
args.push_front(program);
|
||||
auto exe = program;
|
||||
auto privCmds = Strings {
|
||||
"doas",
|
||||
"sudo"
|
||||
};
|
||||
bool isRoot = getuid() == 0;
|
||||
for (auto privCmd : privCmds) {
|
||||
if(!isRoot) {
|
||||
args.push_front(privCmd);
|
||||
exe = privCmd;
|
||||
}
|
||||
execvp(exe.c_str(), stringsToCharPtrs(args).data());
|
||||
if(!isRoot)
|
||||
args.pop_front();
|
||||
}
|
||||
|
||||
throw SysError("unable to execute privilege elevation helper (tried %s)", concatStringsSep(", ", privCmds));
|
||||
}
|
||||
|
||||
struct SystemCommand : ActivatableCommand
|
||||
{
|
||||
SystemCommand()
|
||||
: ActivatableCommand("config.system.build.toplevel")
|
||||
{}
|
||||
|
||||
Strings getDefaultFlakeAttrPaths() override
|
||||
{
|
||||
char hostname[1024];
|
||||
hostname[1023] = '\0';
|
||||
gethostname(hostname, 1024);
|
||||
Strings res{
|
||||
"nixosConfigurations." + std::string(hostname),
|
||||
};
|
||||
return res;
|
||||
}
|
||||
|
||||
Strings getDefaultFlakeAttrPathPrefixes() override
|
||||
{
|
||||
Strings res{"nixosConfigurations."};
|
||||
return res;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
struct SystemActivationCommand : ActivationCommand<SystemCommand>, MixProfile
|
||||
{
|
||||
SystemActivationCommand(std::string activationType, std::string selfCommandName)
|
||||
: ActivationCommand<SystemCommand>(activationType, selfCommandName)
|
||||
{ }
|
||||
|
||||
void run(nix::ref<nix::Store> store) override
|
||||
{
|
||||
auto out = buildActivatable(store);
|
||||
|
||||
if (getuid() != 0) {
|
||||
Strings args {
|
||||
"system", selfCommandName,
|
||||
store->printStorePath(out)
|
||||
};
|
||||
if (profile) {
|
||||
args.push_back("--profile");
|
||||
args.push_back(profile.value());
|
||||
}
|
||||
executePrivileged(getSelfExe().value_or("nix"), args);
|
||||
} else {
|
||||
if (!profile) {
|
||||
profile = settings.nixStateDir + "/profiles/system";
|
||||
} else {
|
||||
auto systemProfileBase = settings.nixStateDir + "/profiles/system-profiles";
|
||||
if (!pathExists(systemProfileBase)) {
|
||||
createDirs(systemProfileBase);
|
||||
}
|
||||
profile = systemProfileBase + "/" + profile.value();
|
||||
}
|
||||
updateProfile(out);
|
||||
executePrivileged(profile.value() + "/bin/switch-to-configuration", Strings{activationType});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
struct CmdSystemBuild : ActivatableBuildCommand<SystemCommand>
|
||||
{
|
||||
std::string description() override
|
||||
{
|
||||
return "build a NixOS system configuration";
|
||||
}
|
||||
|
||||
std::string doc() override
|
||||
{
|
||||
return
|
||||
#include "system-build.md"
|
||||
;
|
||||
}
|
||||
};
|
||||
|
||||
struct CmdSystemActivate : SystemCommand, MixDryRun
|
||||
{
|
||||
CmdSystemActivate()
|
||||
{
|
||||
}
|
||||
|
||||
std::string description() override
|
||||
{
|
||||
return "activate a NixOS system configuration";
|
||||
}
|
||||
|
||||
std::string doc() override
|
||||
{
|
||||
return
|
||||
#include "system-activate.md"
|
||||
;
|
||||
}
|
||||
void run(nix::ref<nix::Store> store) override
|
||||
{
|
||||
auto out = buildActivatable(store);
|
||||
|
||||
executePrivileged(store->printStorePath(out) + "/bin/switch-to-configuration", Strings{dryRun ? "dry-activate" : "test"});
|
||||
}
|
||||
};
|
||||
|
||||
struct CmdSystemApply : SystemActivationCommand
|
||||
{
|
||||
CmdSystemApply() : SystemActivationCommand("switch", "apply")
|
||||
{
|
||||
}
|
||||
|
||||
std::string description() override
|
||||
{
|
||||
return "activate a NixOS system configuration and make it the default boot configuration";
|
||||
}
|
||||
|
||||
std::string doc() override
|
||||
{
|
||||
return
|
||||
#include "system-apply.md"
|
||||
;
|
||||
}
|
||||
};
|
||||
|
||||
struct CmdSystemBoot : SystemActivationCommand
|
||||
{
|
||||
CmdSystemBoot() : SystemActivationCommand("boot","boot")
|
||||
{
|
||||
}
|
||||
|
||||
std::string description() override
|
||||
{
|
||||
return "make a NixOS configuration the default boot configuration";
|
||||
}
|
||||
|
||||
std::string doc() override
|
||||
{
|
||||
return
|
||||
#include "system-boot.md"
|
||||
;
|
||||
}
|
||||
};
|
||||
|
||||
struct CmdSystem : NixMultiCommand
|
||||
{
|
||||
CmdSystem()
|
||||
: MultiCommand({
|
||||
{"build", []() { return make_ref<CmdSystemBuild>(); }},
|
||||
{"activate", []() { return make_ref<CmdSystemActivate>(); }},
|
||||
{"apply", []() { return make_ref<CmdSystemApply>(); }},
|
||||
{"boot", []() { return make_ref<CmdSystemBoot>(); }},
|
||||
})
|
||||
{
|
||||
}
|
||||
|
||||
std::string description() override
|
||||
{
|
||||
return "manage NixOS systems";
|
||||
}
|
||||
|
||||
std::string doc() override
|
||||
{
|
||||
return
|
||||
#include "system.md"
|
||||
;
|
||||
}
|
||||
|
||||
void run() override
|
||||
{
|
||||
if (!command)
|
||||
throw UsageError("'nix system' requires a sub-command.");
|
||||
settings.requireExperimentalFeature(Xp::NixCommand);
|
||||
command->second->prepare();
|
||||
command->second->run();
|
||||
}
|
||||
};
|
||||
|
||||
static auto rCmdSystem = registerCommand<CmdSystem>("system");
|
7
src/nix/system.md
Normal file
7
src/nix/system.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
R""(
|
||||
|
||||
# Description
|
||||
|
||||
This is a group of commands for managing NixOS system configurations.
|
||||
|
||||
)""
|
Loading…
Reference in a new issue