mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-23 12:42:01 +01:00
35 lines
447 B
Nix
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";
|
|
};
|
|
}
|