Files
nixos/modules/system.nix
T
biscuit 36222bdb63 upd
2025-05-20 21:36:34 -05:00

19 lines
467 B
Nix

{vpn_enable, ...}: {
imports = [
../system/bootloader.nix
../system/firewall.nix
../system/locale.nix
../system/network.nix
../system/term.nix
../system/development.nix
# ../system/proxy.nix
# ../system/recovery.nix # only supports non-flake conf
../system/ssh.nix
../system/timezone.nix
# ../system/touchpad.nix
../system/users.nix
../system/tools.nix
(if vpn_enable then ../system/vpn.nix else null)
];
}