1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/programs/looking-glass-client/empty-settings.nix

17 lines
278 B
Nix
Raw Normal View History

2022-10-09 20:11:59 +02:00
{ 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
'';
};
}