1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

radicle: init (#5409)

Co-authored-by: Matthias Beyer <mail@beyermatthias.de>
Co-authored-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Lorenz Leutgeb 2025-10-26 21:34:09 +01:00 committed by GitHub
parent 1830716059
commit 2aaf924e82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 547 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
"node": {
"alias": "hm-user",
"listen": []
},
"publicExplorer": "https://app.radicle.xyz/nodes/$host/$rid$path"
}

View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
config = {
programs.radicle.enable = true;
nmt.script = ''
assertFileContent \
home-files/.radicle/config.json \
${./basic-configuration.json}
'';
};
}

View file

@ -0,0 +1 @@
{ radicle-basic-configuration = ./basic-configuration.nix; }