nixos-config/modules/dev/base.nix
Gabriel Arazas b9785fed44 Go back to using stable channels and add unstable channel as a separate channel
NixOS 20.09 is just around the corner anyways so the packages will be updated soonish.
2020-08-20 02:36:05 +08:00

31 lines
1.0 KiB
Nix
Executable File

# 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 {
my.packages = with pkgs; [
caddy2 # THE ULTIMATE HTTPS/2 SERVER FOR 'YER GOLFIN' SESSIONS!!!
cookiecutter # A project scaffolding tool.
gnumake # Make your life easier with GNU Make.
hyperfine # You shouldn't be feel just fine with your programs...
stow # Build your symlink farm on the other side of the country, er, filesystem.
tldr # What manuals should include.
universal-ctags # Enable fast traveling to your code (assuming written in a supported language).
];
# Augment your shell with automatic environment variables loading and unloading.
my.home.programs = {
direnv.enable = true;
fish.enable = true;
};
};
}