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