Compare commits

..

2 Commits

Author SHA1 Message Date
84c356d93c enable tailscale 2022-11-23 17:01:25 -08:00
8d767ca499 euhadra: add to nebula 2022-11-24 01:59:07 +01:00
3 changed files with 10 additions and 0 deletions

@ -9,6 +9,8 @@ let mpdStreamingPort = 8080; in
./i3.nix
./uefi.nix
./fstrim.nix
./nebula.nix
./tailscale.nix
];
environment.etc."lvm/lvm.conf".text = ''

@ -15,6 +15,7 @@
./nvim05.nix
./nm-restart.nix
./nebula.nix
./tailscale.nix
];
hardware.enableRedistributableFirmware = true;

7
tailscale.nix Normal file

@ -0,0 +1,7 @@
{ config, pkgs, ... }: {
# make the tailscale command usable to users
environment.systemPackages = [ pkgs.tailscale ];
# enable the tailscale service
services.tailscale.enable = true;
}