mirror of
https://github.com/nix-community/home-manager.git
synced 2025-04-14 00:07:15 +00:00
14 lines
224 B
Nix
14 lines
224 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.radicle = { enable = true; };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.radicle/config.json \
|
||
|
${./basic-configuration.json}
|
||
|
'';
|
||
|
};
|
||
|
}
|