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

35 lines
447 B
Nix
Raw Normal View History

2022-02-20 17:46:48 +01:00
{ config, lib, pkgs, ... }:
{
imports = [
../modules
../services
2022-02-20 17:46:48 +01:00
./filesystems.nix
./boot.nix
2022-02-20 17:46:48 +01:00
./networking.nix
./hardware.nix
2022-02-20 17:46:48 +01:00
];
personal = {
services = {
2022-03-22 08:55:51 +01:00
acme = {
enable = true;
};
2022-10-25 09:53:40 +02:00
hass = {
enable = true;
};
media = {
enable = true;
};
2022-10-25 09:53:40 +02:00
tailscale = {
enable = true;
};
};
};
2022-02-20 17:46:48 +01:00
system = {
stateVersion = "21.11";
};
}