Enable tailscale on all machines
This commit is contained in:
parent
46c3419bad
commit
7b7fbb64d8
@ -45,6 +45,7 @@ inputs:
|
|||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
tailscale.enable = true;
|
||||||
# yubikey smartcard mode
|
# yubikey smartcard mode
|
||||||
pcscd.enable = true;
|
pcscd.enable = true;
|
||||||
dbus.packages = with pkgs; [ gcr ];
|
dbus.packages = with pkgs; [ gcr ];
|
||||||
|
@ -30,7 +30,6 @@ 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;
|
||||||
|
@ -21,6 +21,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
|||||||
hostName = hostname;
|
hostName = hostname;
|
||||||
interfaces.eno1.useDHCP = true;
|
interfaces.eno1.useDHCP = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.me = {
|
users.users.me = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
createHome = true;
|
createHome = true;
|
||||||
@ -62,7 +63,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
|||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
# mount tmp as tmpfs
|
# mount tmp as tmpfs
|
||||||
tmpOnTmpfs = true;
|
tmp.useTmpfs = true;
|
||||||
# Enable NTFS support
|
# Enable NTFS support
|
||||||
supportedFilesystems = [ "ntfs" ];
|
supportedFilesystems = [ "ntfs" ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user