mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 23:11:34 +01:00
22 lines
348 B
Nix
22 lines
348 B
Nix
{
|
|
imports = [
|
|
../shared.nix
|
|
./hardware.nix
|
|
./disko.nix
|
|
|
|
./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;
|
|
};
|
|
};
|
|
}
|