nix/system/zenix/system.nix
2023-05-08 17:02:57 +01:00

21 lines
310 B
Nix

# https://search.nixos.org/options
{ config, pkgs, lib, ... }:
{
networking.hostName = "zenix";
services.openssh.enable = true;
networking.firewall.checkReversePath = "loose";
system.stateVersion = "22.11"; # do not change
virtualisation = {
podman = {
enable = true;
};
};
}