NixOS/home/config/nvim/default.nix

28 lines
460 B
Nix
Raw Normal View History

2024-06-12 19:19:13 +07:00
{ config, pkgs, unstable, ... }:
2024-06-12 09:54:11 +07:00
{
home.file.".config/nvim" = {
source = ./.;
recursive = true;
};
2024-06-12 19:19:13 +07:00
sops.secrets."copilot" = {
path = "${config.home.homeDirectory}/.config/github-copilot/hosts.json";
};
2024-06-12 09:54:11 +07:00
home.packages = with pkgs; [
docker-compose-language-service
emmet-ls
silicon # For code screenshots
###### Golang development tools ######
gomodifytags
gotests
iferr
curl
2024-06-12 19:25:36 +07:00
gcc
python3
2024-06-12 09:54:11 +07:00
];
}