mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
30 lines
897 B
Nix
Executable File
30 lines
897 B
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.
|
|
stow # Build your symlink farm.
|
|
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;
|
|
};
|
|
};
|
|
}
|