feat: add radicle-node

This commit is contained in:
Maddie H 2024-10-06 21:34:59 +01:00
parent 3abad17a3d
commit a6bc513321
Signed by: maddie
GPG Key ID: C296DE8C9053683F
2 changed files with 9 additions and 0 deletions

View File

@ -71,6 +71,7 @@
./homes/common/wezterm.nix ./homes/common/wezterm.nix
./homes/common/xdg.nix ./homes/common/xdg.nix
./homes/common/zsh.nix ./homes/common/zsh.nix
./homes/common/radicle.nix
./homes/desktop/alacritty.nix ./homes/desktop/alacritty.nix
./homes/desktop/anyrun.nix ./homes/desktop/anyrun.nix
@ -183,6 +184,7 @@
./homes/common/wezterm.nix ./homes/common/wezterm.nix
./homes/common/xdg.nix ./homes/common/xdg.nix
./homes/common/zsh.nix ./homes/common/zsh.nix
./homes/common/radicle.nix
]; ];
} }
# Nix Darwin Modules # Nix Darwin Modules

7
homes/common/radicle.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
radicle-node
];
}