depot/third_party/home-manager/tests/modules/programs/nheko/nheko-empty-settings.nix
Default email 2eafb8192e Project import generated by Copybara.
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
2023-01-10 02:35:00 -07:00

16 lines
288 B
Nix

{ pkgs, ... }:
let
configDir = if pkgs.stdenv.isDarwin then
"home-files/Library/Application Support"
else
"home-files/.config";
in {
programs.nheko.enable = true;
test.stubs.nheko = { };
nmt.script = ''
assertPathNotExists "${configDir}/nheko/nheko.conf"
'';
}