mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-18 18:36:05 -07:00
17 lines
676 B
Nix
17 lines
676 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
let cfg = config.modules.devel.programming;
|
|
in {
|
|
options.modules.devel.programming.enable = lib.mkEnableOption "programming";
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
thefuck # Corrects errors in previous console commands
|
|
nodejs # JavaScript runtime built on Chrome's V8 JavaScript engine
|
|
cargo # Package manager and build system for Rust
|
|
docker-compose # Docker CLI plugin to define and run multi-container applications with Docker
|
|
distrobox # Use any linux distribution inside your terminal
|
|
just # Hand way to save and run project-specific commands
|
|
];
|
|
};
|
|
}
|