Files
nix/modules/system/default.nix
2025-11-11 19:28:22 -06:00

26 lines
336 B
Nix

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