39 lines
645 B
Nix
39 lines
645 B
Nix
{
|
|
modulesPath,
|
|
lib,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}:
|
|
let
|
|
pubKeys = (import "${self}/options/keys.nix").allUser;
|
|
in
|
|
{
|
|
imports = [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
./disk-config.nix
|
|
../../modules/nix
|
|
];
|
|
boot.loader.grub = {
|
|
efiSupport = true;
|
|
efiInstallAsRemovable = true;
|
|
};
|
|
|
|
services.openssh.enable = true;
|
|
|
|
environment.systemPackages = map lib.lowPrio [
|
|
pkgs.curl
|
|
];
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = pubKeys;
|
|
|
|
virtualisation.docker = {
|
|
enableOnBoot = true;
|
|
rootless = {
|
|
enable = true;
|
|
setSocketVariable = true;
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|