21 lines
410 B
Nix
21 lines
410 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ ./hardware-configuration.nix ];
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
services.tailscale.enable = true;
|
|
services.tailscale.useRoutingFeatures = "client";
|
|
xyno.presets.cli.enable = true;
|
|
xyno.presets.home-manager.enable = true;
|
|
xyno.system.user.enable = true;
|
|
xyno.networking.networkd = {
|
|
enable = true;
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|