restructure
This commit is contained in:
parent
836da5123e
commit
d0f9c504e3
6 changed files with 10 additions and 12 deletions
50
modules/apps/dev/default.nix
Normal file
50
modules/apps/dev/default.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkEnableOption mkIf;
|
||||
cfg = config.horseman.apps.dev;
|
||||
in {
|
||||
options = {
|
||||
horseman.apps.dev = {
|
||||
enable = mkEnableOption "Apps used for programming";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
dotnetCorePackages.sdk_9_0
|
||||
gcc
|
||||
ghex
|
||||
glsl_analyzer
|
||||
jdk
|
||||
jetbrains.clion
|
||||
jetbrains.idea-ultimate
|
||||
jetbrains.rider
|
||||
jetbrains.rust-rover
|
||||
jetbrains.webstorm
|
||||
mermaid-cli
|
||||
mono
|
||||
nodejs_22
|
||||
platformio-core
|
||||
python313
|
||||
sqlite
|
||||
sqlitebrowser
|
||||
xclip
|
||||
uv
|
||||
|
||||
haskell.compiler.native-bignum.ghcHEAD
|
||||
tree-sitter-grammars.tree-sitter-haskell
|
||||
haskell-language-server
|
||||
|
||||
kotlin
|
||||
tree-sitter-grammars.tree-sitter-kotlin
|
||||
kotlin-language-server
|
||||
|
||||
tree-sitter-grammars.tree-sitter-nix
|
||||
nixd
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue