From 46c3419bad91090b086b48b5737ef003970865b9 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Fri, 21 Apr 2023 00:16:02 +0200 Subject: [PATCH] Install tailscale and use new tmpfs setting --- machines/morpheus.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/machines/morpheus.nix b/machines/morpheus.nix index 0978563..4215272 100644 --- a/machines/morpheus.nix +++ b/machines/morpheus.nix @@ -30,6 +30,7 @@ inputs.nixpkgs.lib.nixosSystem { interfaces.wlp2s0.useDHCP = true; }; services = { + tailscale.enable = true; # enable touchpad support xserver.libinput.enable = true; blueman.enable = true; @@ -93,7 +94,7 @@ inputs.nixpkgs.lib.nixosSystem { }; }; # mount tmp as tmpfs - tmpOnTmpfs = true; + tmp.useTmpfs = true; # Enable NTFS support supportedFilesystems = [ "ntfs" ]; };