diff --git a/flake.nix b/flake.nix index fff2a0f..e065def 100644 --- a/flake.nix +++ b/flake.nix @@ -71,6 +71,7 @@ ./homes/common/wezterm.nix ./homes/common/xdg.nix ./homes/common/zsh.nix + ./homes/common/radicle.nix ./homes/desktop/alacritty.nix ./homes/desktop/anyrun.nix @@ -183,6 +184,7 @@ ./homes/common/wezterm.nix ./homes/common/xdg.nix ./homes/common/zsh.nix + ./homes/common/radicle.nix ]; } # Nix Darwin Modules diff --git a/homes/common/radicle.nix b/homes/common/radicle.nix new file mode 100644 index 0000000..2404a66 --- /dev/null +++ b/homes/common/radicle.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + home.packages = with pkgs; [ + radicle-node + ]; +}