2023-09-12 18:59:42 -07:00

27 lines
452 B
Nix

# 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
tmuxp
lazygit
git-annex
pandoc
gollum
cmake
coreutils
gcc
];
};
}