Install tailscale and use new tmpfs setting

This commit is contained in:
Valentin Brandl 2023-04-21 00:16:02 +02:00
parent 77829a340f
commit 46c3419bad
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9

View File

@ -30,6 +30,7 @@ inputs.nixpkgs.lib.nixosSystem {
interfaces.wlp2s0.useDHCP = true; interfaces.wlp2s0.useDHCP = true;
}; };
services = { services = {
tailscale.enable = true;
# enable touchpad support # enable touchpad support
xserver.libinput.enable = true; xserver.libinput.enable = true;
blueman.enable = true; blueman.enable = true;
@ -93,7 +94,7 @@ inputs.nixpkgs.lib.nixosSystem {
}; };
}; };
# mount tmp as tmpfs # mount tmp as tmpfs
tmpOnTmpfs = true; tmp.useTmpfs = true;
# Enable NTFS support # Enable NTFS support
supportedFilesystems = [ "ntfs" ]; supportedFilesystems = [ "ntfs" ];
}; };