2024-11-11 19:05:33 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
cfg = config.krop.hm.packages.development;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.krop.hm.packages.development = {
|
|
|
|
enable = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = true;
|
|
|
|
example = false;
|
|
|
|
description = "Enable my development configuration";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
gh
|
|
|
|
d2
|
|
|
|
iperf
|
2024-12-02 22:59:56 +01:00
|
|
|
rustc
|
|
|
|
cargo
|
|
|
|
clippy
|
2024-12-02 23:01:40 +01:00
|
|
|
clang
|
2025-01-27 15:57:36 +01:00
|
|
|
distrobox
|
2024-11-11 19:05:33 +01:00
|
|
|
];
|
|
|
|
programs.go = {
|
|
|
|
enable = true;
|
|
|
|
goPath = "Repositories/go";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|