nixos-config/machines/hiroshi/configuration.nix
2024-08-21 01:30:21 +02:00

24 lines
442 B
Nix

# SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
{
imports = [
./hardware-configuration.nix
../../modules
];
sbruder = {
full = false;
restic.system.enable = true;
wireguard.home.enable = true;
infovhost.enable = true;
};
networking.hostName = "hiroshi";
system.stateVersion = "24.05";
networking.firewall.allowedTCPPorts = [ 80 443 ];
}