mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
26 lines
397 B
Nix
26 lines
397 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.dotfiles.dev;
|
|
in
|
|
{
|
|
options.dotfiles.dev = {
|
|
enable = lib.mkEnableOption "Development tools and language servers";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
gcc
|
|
gnumake
|
|
clang-tools
|
|
lldb
|
|
python3
|
|
uv
|
|
ruff
|
|
ty
|
|
nil
|
|
nixd
|
|
nixfmt
|
|
];
|
|
};
|
|
}
|