2022-02-20 17:46:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2022-11-15 10:32:56 +01:00
|
|
|
../../shared/modules
|
2022-11-17 21:48:21 +01:00
|
|
|
../../shared/programs
|
2022-11-15 10:32:56 +01:00
|
|
|
../../shared/services
|
2022-02-20 17:46:48 +01:00
|
|
|
|
2024-01-30 14:00:15 +01:00
|
|
|
./disko.nix
|
2022-06-05 22:54:46 +02:00
|
|
|
./boot.nix
|
2022-02-20 17:46:48 +01:00
|
|
|
./networking.nix
|
2022-06-05 22:54:46 +02:00
|
|
|
./hardware.nix
|
2024-01-30 14:00:15 +01:00
|
|
|
./extras.nix
|
2022-02-20 17:46:48 +01:00
|
|
|
];
|
|
|
|
|
2022-04-10 20:57:56 +02:00
|
|
|
personal = {
|
|
|
|
services = {
|
2022-10-25 09:53:40 +02:00
|
|
|
hass = {
|
2022-10-26 17:52:42 +02:00
|
|
|
enable = config.personal.services.enable;
|
2022-04-10 20:57:56 +02:00
|
|
|
};
|
2022-10-25 09:53:40 +02:00
|
|
|
tailscale = {
|
2022-10-26 17:52:42 +02:00
|
|
|
enable = config.personal.services.enable;
|
2022-10-25 09:53:40 +02:00
|
|
|
};
|
2022-04-10 20:57:56 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-02-20 17:46:48 +01:00
|
|
|
system = {
|
2024-01-30 14:00:15 +01:00
|
|
|
stateVersion = "23.11";
|
2022-02-20 17:46:48 +01:00
|
|
|
};
|
|
|
|
}
|