nix/host/x86_64-linux/recovery/default.nix

16 lines
258 B
Nix
Raw Normal View History

2025-01-18 22:06:57 +03:00
{ inputs, ... }:
2025-01-18 21:21:43 +03:00
{
2025-01-18 22:06:57 +03:00
imports = [ "${inputs.nixpkgs}/nixos/modules/installer/cd-dvd/iso-image.nix" ];
2025-01-18 21:21:43 +03:00
# Root user setup.
home.nixos.enable = true;
user.root = true;
module = {
keyd.enable = true;
purpose = {
live = true;
};
};
}