11 lines
271 B
Nix
11 lines
271 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Example: Tailscale, other system services
|
|
services.nix-daemon.enable = true;
|
|
services.tailscale.enable = true;
|
|
|
|
# Example: you could also place security/pam or other service configs here:
|
|
security.pam.enableSudoTouchIdAuth = true;
|
|
}
|