23 lines
402 B
Nix
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
|
|
;
|
|
}
|