mirror of
https://github.com/tboerger/nixos-config
synced 2026-07-23 05:34:54 +02:00
42 lines
554 B
Nix
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";
|
|
};
|
|
}
|