Files
infra-nix/hosts/voyager/modules/default.nix
T
2026-07-07 00:34:26 +02:00

17 lines
234 B
Nix

{ config, pkgs, ... }:
{
imports = [
./users.nix
./networking.nix
./time.nix
./system.nix
./boot.nix
./dnsmasq.nix
./ssh.nix
];
services.cockpit = {
enable = true;
openFirewall = true;
};
}