24 lines
414 B
Nix
Raw Normal View History

2023-07-10 17:52:34 -07:00
# coding stuff for all the languages
{ config, lib, pkgs, user, ... }:
let
cfg = config.modules.devel.tooling;
in {
options.modules.devel.tooling.enable = lib.mkEnableOption "tooling";
config = lib.mkIf cfg.enable {
# Install packages
environment.systemPackages = with pkgs; [
neovim
ripgrep
tmux
2023-07-11 21:17:48 -07:00
tmuxp
lazygit
2023-09-03 08:32:57 -07:00
git-annex
2023-09-10 11:43:47 -07:00
pandoc
gollum
2023-07-10 17:52:34 -07:00
];
};
}