nixos-config/machines/hiroshi/configuration.nix

24 lines
442 B
Nix
Raw Normal View History

2024-05-18 15:48:01 +02:00
# 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 ];
}