Files
nix/modules/system/default.nix
2025-11-05 18:28:15 -06:00

23 lines
286 B
Nix

{
pkgs,
config,
lib,
...
}: {
imports = [
./ssh
./sops
./docker
./podman
./yubikey
./tailscale
./vpns
./vpn-confinement
./syncthing
./graphics
];
system.ssh.enable = lib.mkDefault true;
system.sops.enable = lib.mkDefault true;
}