mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
Co-authored-by: Matthias Beyer <mail@beyermatthias.de> Co-authored-by: Austin Horstman <khaneliman12@gmail.com>
13 lines
217 B
Nix
13 lines
217 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.radicle.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.radicle/config.json \
|
|
${./basic-configuration.json}
|
|
'';
|
|
};
|
|
}
|