1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 12:42:01 +01:00
github.com-tboerger-nixos-c.../machines/utgard/default.nix
2022-10-25 09:53:40 +02:00

35 lines
447 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
../modules
../services
./filesystems.nix
./boot.nix
./networking.nix
./hardware.nix
];
personal = {
services = {
acme = {
enable = true;
};
hass = {
enable = true;
};
media = {
enable = true;
};
tailscale = {
enable = true;
};
};
};
system = {
stateVersion = "21.11";
};
}