summary refs log tree commit diff
path: root/hosts/vm/cfg.nix
blob: 1b17ea6193abd5b26eeb5918508650643b9d58d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{config}: {
  imports = [
    "../profiles/core.nix"
    "../profiles/user.nix"
    "../mixins/tailscale.nix"
  ]

  config = {
    boot.supportedFilesystems = ["9p"];
    fileSystems."/flake" = {
      fsType = "9p";
      device = "host0";
      options = ["_netdev"];
    };
    boot.kernelParams = [ "console=ttyS0" ];
  };
}