From a6bc51332197292794ad2a11e8205f8d0bbe3016 Mon Sep 17 00:00:00 2001 From: Maddie H Date: Sun, 6 Oct 2024 21:34:59 +0100 Subject: [PATCH] feat: add radicle-node --- flake.nix | 2 ++ homes/common/radicle.nix | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 homes/common/radicle.nix 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 + ]; +}