nixos-config/modules/dev/base.nix

24 lines
767 B
Nix
Raw Normal View History

2020-08-06 15:35:49 +00:00
# The utmost requirements for a development workflow.
{ config, options, lib, pkgs, ... }:
with lib;
{
options.modules.dev.base = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf config.modules.dev.base.enable {
2020-08-16 08:33:44 +00:00
my.packages = with pkgs; [
caddy2 # THE ULTIMATE HTTPS/2 SERVER FOR 'YER GOLFIN' SESSIONS!!!
2020-08-06 15:35:49 +00:00
cookiecutter # A project scaffolding tool.
2020-08-16 08:33:44 +00:00
direnv # Augment your shell with automatic environment variables loading and unloading.
2020-08-06 15:35:49 +00:00
gnumake # Make your life easier with GNU Make.
2020-08-16 08:33:44 +00:00
tldr # What manuals should include.
2020-08-06 15:35:49 +00:00
universal-ctags # Enable fast traveling to your code (assuming written in a supported language).
];
};
}