mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
initial dendritic migration
This commit is contained in:
parent
86fe70288b
commit
168633cf07
12 changed files with 254 additions and 147 deletions
25
modules/dev.nix
Normal file
25
modules/dev.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue