reorganization into flat profile-based modules

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-19 16:08:17 +02:00
parent 1bc8c22feb
commit 127227205d
Signed by: semere
GPG key ID: 7FC937214DF30488
15 changed files with 660 additions and 696 deletions

View file

@ -5,27 +5,18 @@
...
}:
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
];
};
environment.systemPackages = with pkgs; [
gcc
gnumake
clang-tools
lldb
python3
uv
ruff
ty
nil
nixd
nixfmt
];
}