mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00

- add `radicle` package - add `radicle-tui` package - create fish alias for `rad-tui` - add radicle config template `radicle.nix` - add `.gitconfig.radicle` to `.gitconfig` - create directory for radicle projects with its `.gitconfig.radicle`
14 lines
223 B
Nix
14 lines
223 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
services.radicle = {
|
|
enable = false;
|
|
checkConfig = false;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.radicle-tui.packages.${pkgs.system}.default
|
|
radicle-node
|
|
];
|
|
}
|