From 24637dfdfdd6dc8d116542f16a07d808c9e43c36 Mon Sep 17 00:00:00 2001 From: tzlil Date: Tue, 13 Dec 2022 02:15:50 +0200 Subject: first commit --- hosts/vm/cfg.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 hosts/vm/cfg.nix (limited to 'hosts') diff --git a/hosts/vm/cfg.nix b/hosts/vm/cfg.nix new file mode 100644 index 0000000..1b17ea6 --- /dev/null +++ b/hosts/vm/cfg.nix @@ -0,0 +1,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" ]; + }; +} \ No newline at end of file -- cgit 1.4.1