mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
21 lines
328 B
Nix
21 lines
328 B
Nix
{
|
|
imports = [
|
|
../common.nix
|
|
./hardware.nix
|
|
./disko.nix
|
|
|
|
./containers/nextcloud
|
|
];
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
myConfig = {
|
|
sops.enable = true;
|
|
boot.loader.systemd-boot.enable = true;
|
|
tailscale = {
|
|
enable = true;
|
|
ssh.enable = true;
|
|
exitNode.enable = true;
|
|
};
|
|
};
|
|
}
|