feat: rename 'common' to 'base'

This commit is contained in:
Ryan Yin
2023-06-13 00:53:33 +08:00
parent be437c3417
commit 24ef3ed105
20 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,36 @@
{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
];
programs = {
# modern vim
neovim = {
enable = true;
extraConfig = ''
set number relativenumber
'';
};
direnv = {
enable = true;
nix-direnv.enable = true;
enableZshIntegration = true;
};
};
# GitHub CLI tool
programs.gh = {
enable = true;
};
}