Files
nixos/modules/system.nix
T
biscuit be57946347 upd
2025-05-20 21:47:13 -05:00

26 lines
533 B
Nix

{
vpn_enable,
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 (vpn_enable == true) [
../system/vpn.nix
];
}