NixToSee/hosts/jitsi/default.nix
2025-05-08 20:36:52 +02:00

18 lines
281 B
Nix

{
pkgs,
lib,
modulesPath,
...
}: {
nixpkgs.config = {
# Disable if you don't want unfree packages
allowUnfree = true;
};
imports = [
./hardware-configuration.nix
../../system_profiles/defaults.nix
../../system_profiles/mini-container.nix
];
}