nixos-config/machines/okarin/configuration.nix

19 lines
294 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
];
sbruder = {
nginx.hardening.enable = true;
restic.system.enable = true;
wireguard.home.enable = true;
};
networking.hostName = "okarin";
system.stateVersion = "21.11";
}