1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
home-manager/tests/modules/services/radicle/basic-configuration.nix
2024-05-15 23:26:57 +02:00

13 lines
224 B
Nix

{ config, pkgs, ... }:
{
config = {
services.radicle = { enable = true; };
nmt.script = ''
assertFileContent \
home-files/.radicle/config.json \
${./basic-configuration.json}
'';
};
}