1
0
mirror of https://github.com/tboerger/nixos-config synced 2026-07-23 05:34:54 +02:00
Files
2026-02-26 14:26:50 +01:00

42 lines
554 B
Nix

{
config,
lib,
pkgs,
...
}:
{
imports = [
../../shared/modules
../../shared/programs
../../shared/services
./disko.nix
./boot.nix
./networking.nix
./hardware.nix
./extras.nix
];
age = {
identityPaths = [
"/etc/ssh/ssh_host_ed25519_key"
];
};
personal = {
services = {
hass = {
enable = config.personal.services.enable;
};
tailscale = {
enable = config.personal.services.enable;
};
};
};
system = {
stateVersion = "23.11";
};
}