diff options
Diffstat (limited to 'machines')
| -rw-r--r-- | machines/feneri.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/machines/feneri.nix b/machines/feneri.nix new file mode 100644 index 0000000..d731a36 --- /dev/null +++ b/machines/feneri.nix @@ -0,0 +1,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"; +} |
