summaryrefslogtreecommitdiff
path: root/machines/feneri.nix
blob: 2f3878b812ed0a61b5183ae46e6ed7809f18fe31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ flake, modulesPath, ... }:

{
  imports = [
    flake.outputs.nixosModules.disk
    flake.outputs.nixosModules.network
    (modulesPath + "/profiles/qemu-guest.nix")
  ];

  nixpkgs.hostPlatform.system = "x86_64-linux";

  depot.disk = {
    enable = true;
    # device = "/dev/vda";
  };

  depot.net = {
    sshd.enable = true;
  };

  services.getty.autologinUser = "root";

  networking.hostName = "feneri";
}