1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 15:41:02 +01:00
home-manager/tests/modules/programs/distrobox/assert-containers-systemd-unit.nix

10 lines
229 B
Nix

{
programs.distrobox = {
enable = true;
enableSystemdUnit = true;
};
test.asserts.assertions.expected = [
"Cannot set `programs.distrobox.enableSystemdUnit` if `programs.distrobox.containers` is unset."
];
}