Recovery: Create empty host.
This commit is contained in:
parent
a1fde92ec3
commit
ad77bffae7
|
@ -12,11 +12,7 @@
|
||||||
package = {
|
package = {
|
||||||
common = true;
|
common = true;
|
||||||
core = true;
|
core = true;
|
||||||
creative = true;
|
|
||||||
desktop = true;
|
desktop = true;
|
||||||
dev = true;
|
|
||||||
extra = true;
|
|
||||||
gaming = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
14
host/x86_64-linux/recovery/default.nix
Normal file
14
host/x86_64-linux/recovery/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
# Root user setup.
|
||||||
|
home.nixos.enable = true;
|
||||||
|
user.root = true;
|
||||||
|
|
||||||
|
module = {
|
||||||
|
keyd.enable = true;
|
||||||
|
purpose = {
|
||||||
|
live = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue