nixos-config/machines/shinobu/configuration.nix

20 lines
320 B
Nix
Raw Normal View History

2023-07-01 12:37:12 +02:00
{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
./services/co2_exporter.nix
2023-07-01 12:37:12 +02:00
./services/router.nix
];
sbruder = {
wireguard.home.enable = true;
nginx.hardening.enable = true;
};
networking.hostName = "shinobu";
system.stateVersion = "23.05";
}