nixos/system/full.nix
2024-07-24 00:36:50 +02:00

23 lines
402 B
Nix

{lib, config, ...}: {
imports = [
./audio.nix
./env.nix
./networking.nix
./persistence.nix
./bluetooth.nix
./btrfs.nix
./fonts.nix
./hardware.nix
./nix.nix
./nfs.nix
./users.nix
./sops.nix
./ssh.nix
./steam.nix
./stylix.nix
./syncthing.nix
./wayland.nix
./zsh.nix
] ++ lib.optional config.containers.enable ./containers
;
}