mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-06 00:51:04 +01:00
15 lines
281 B
Nix
15 lines
281 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
|
|
|
path =
|
|
if isDarwin then "Library/Application Support/rbw/config.json" else ".config/rbw/config.json";
|
|
in
|
|
{
|
|
programs.rbw.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/${path}
|
|
'';
|
|
}
|