1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-22 18:21:58 +01:00
github.com-tboerger-nixos-c.../servers/utgard/default.nix

31 lines
463 B
Nix
Raw Permalink Normal View History

2022-02-20 17:46:48 +01:00
{ config, lib, pkgs, ... }:
{
imports = [
../../shared/modules
../../shared/programs
../../shared/services
2022-02-20 17:46:48 +01:00
./disko.nix
./boot.nix
2022-02-20 17:46:48 +01:00
./networking.nix
./hardware.nix
./extras.nix
2022-02-20 17:46:48 +01:00
];
personal = {
services = {
2022-10-25 09:53:40 +02:00
hass = {
enable = config.personal.services.enable;
};
2022-10-25 09:53:40 +02:00
tailscale = {
enable = config.personal.services.enable;
2022-10-25 09:53:40 +02:00
};
};
};
2022-02-20 17:46:48 +01:00
system = {
stateVersion = "23.11";
2022-02-20 17:46:48 +01:00
};
}