mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
18 lines
294 B
Nix
18 lines
294 B
Nix
{
|
|
imports = [
|
|
./containers/docker
|
|
./containers/nspawn
|
|
];
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
myConfig = {
|
|
sops.enable = true;
|
|
boot.loader.systemdBoot.enable = true;
|
|
tailscale = {
|
|
enable = true;
|
|
ssh.enable = true;
|
|
exitNode.enable = true;
|
|
};
|
|
};
|
|
}
|