10 lines
211 B
Nix
10 lines
211 B
Nix
{ inputs, ... }: {
|
|
time.timeZone = "America/New_York";
|
|
|
|
services.tailscale.enable = true;
|
|
|
|
# security.sudo.wheelNeedsPassword = false;
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
}
|