1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 10:58:31 +02:00
home-manager/tests/modules/programs/looking-glass-client/empty-settings.nix
2022-10-18 10:12:15 +02:00

17 lines
278 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.looking-glass-client = {
enable = true;
package = config.lib.test.mkStubPackage { };
};
nmt.script = ''
assertPathNotExists home-files/.config/looking-glass/client.ini
'';
};
}