1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/programs/rbw/empty-settings.nix

20 lines
364 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 {
config = {
programs.rbw.enable = true;
nixpkgs.overlays = [ (import ./overlay.nix) ];
nmt.script = ''
assertPathNotExists home-files/${path}
'';
};
}