mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-19 07:43:44 +01:00
21 lines
399 B
Nix
21 lines
399 B
Nix
{ config, pkgs, nil, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
nil.packages."${pkgs.system}".default # nix language server
|
|
|
|
# GUI IDE
|
|
insomnia # REST client
|
|
|
|
# need to run `conda-install` before using it
|
|
# need to run `conda-shell` before using command `conda`
|
|
# conda is not available for MacOS
|
|
conda
|
|
];
|
|
|
|
# GitHub CLI tool
|
|
programs.gh = {
|
|
enable = true;
|
|
};
|
|
}
|