Files
nixos/modules/system.nix
T
biscuit 6ae2221007 upd
2025-05-21 10:51:10 -05:00

26 lines
531 B
Nix

{
vpnEnable,
lib,
...
}: {
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
]
++ lib.optionals (vpnEnable == true) [
../system/vpn.nix
];
}