2.home-manager/tests/modules/programs/bluetuith/empty-settings.nix
Poseidon 7ec621b510 bluetuith: add module
Create the `programs.bluetuith` module with support for defining
settings.
2025-11-15 10:14:08 +01:00

13 lines
229 B
Nix

{ config, ... }:
{
config = {
programs.bluetuith = {
enable = true;
package = config.lib.test.mkStubPackage { };
};
nmt.script = ''
assertPathNotExists home-files/.config/bluetuith
'';
};
}