1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 03:48:31 +02:00
home-manager/tests/modules/programs/rbw/empty-settings.nix

19 lines
321 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
inherit (pkgs.stdenv.hostPlatform) isDarwin;
path = if isDarwin then
"Library/Application Support/rbw/config.json"
else
".config/rbw/config.json";
in {
imports = [ ./rbw-stubs.nix ];
programs.rbw.enable = true;
nmt.script = ''
assertPathNotExists home-files/${path}
'';
}