blob: d731a36b6d059381079249bdcc34e595a140a955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ flake, modulesPath, ... }:
{
imports = [
flake.outputs.nixosModules.disk
(modulesPath + "/profiles/qemu-guest.nix")
];
nixpkgs.hostPlatform.system = "x86_64-linux";
depot.disk = {
enable = true;
# device = "/dev/vda";
};
services.getty.autologinUser = "root";
networking.hostName = "feneri";
}
|