Enable tailscale on all machines

This commit is contained in:
Valentin Brandl 2023-04-21 17:03:29 +02:00
parent 46c3419bad
commit 7b7fbb64d8
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9
3 changed files with 3 additions and 2 deletions

View File

@ -45,6 +45,7 @@ inputs:
};
services = {
tailscale.enable = true;
# yubikey smartcard mode
pcscd.enable = true;
dbus.packages = with pkgs; [ gcr ];

View File

@ -30,7 +30,6 @@ inputs.nixpkgs.lib.nixosSystem {
interfaces.wlp2s0.useDHCP = true;
};
services = {
tailscale.enable = true;
# enable touchpad support
xserver.libinput.enable = true;
blueman.enable = true;

View File

@ -21,6 +21,7 @@ inputs.nixpkgs.lib.nixosSystem {
hostName = hostname;
interfaces.eno1.useDHCP = true;
};
users.users.me = {
isNormalUser = true;
createHome = true;
@ -62,7 +63,7 @@ inputs.nixpkgs.lib.nixosSystem {
efi.canTouchEfiVariables = true;
};
# mount tmp as tmpfs
tmpOnTmpfs = true;
tmp.useTmpfs = true;
# Enable NTFS support
supportedFilesystems = [ "ntfs" ];
};