feat: Improve radicle ux
This commit is contained in:
parent
cc1da97c55
commit
12269ba1c6
5 changed files with 101 additions and 2 deletions
26
home/david/modules/programs/radicle.nix
Normal file
26
home/david/modules/programs/radicle.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
cfg = config.david.programs.radicle;
|
||||
in {
|
||||
options = {
|
||||
david.programs.radicle = {
|
||||
enable = lib.mkEnableOption "radicle";
|
||||
};
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
youthlic.programs.radicle.enable = true;
|
||||
programs.radicle.uri = {
|
||||
rad.browser = {
|
||||
enable = true;
|
||||
preferredNode = "iris.radicle.xyz";
|
||||
};
|
||||
web-rad = {
|
||||
browser = "zen-twilight.desktop";
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue