1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-04-14 00:07:15 +00:00
home-manager/tests/modules/services/radicle/basic-configuration.nix

14 lines
224 B
Nix
Raw Normal View History

2024-05-15 21:44:55 +02:00
{ config, pkgs, ... }:
{
config = {
services.radicle = { enable = true; };
nmt.script = ''
assertFileContent \
home-files/.radicle/config.json \
${./basic-configuration.json}
'';
};
}