global/programming -> profiles/programming
This commit is contained in:
parent
97601ae155
commit
8ed1633716
14 changed files with 28 additions and 28 deletions
16
users/profiles/programming/haskell.nix
Normal file
16
users/profiles/programming/haskell.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
home.packages = with pkgs; lib.lists.flatten [
|
||||
haskell-language-server
|
||||
ghc
|
||||
cabal-install
|
||||
ormolu
|
||||
|
||||
(with haskellPackages; [
|
||||
hoogle
|
||||
])
|
||||
|
||||
stack
|
||||
# stack2nix
|
||||
cabal2nix
|
||||
];
|
||||
}
|
7
users/profiles/programming/java.nix
Normal file
7
users/profiles/programming/java.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
openjdk19
|
||||
clang-tools
|
||||
gradle
|
||||
];
|
||||
}
|
6
users/profiles/programming/kotlin.nix
Normal file
6
users/profiles/programming/kotlin.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
home.packages = with pkgs; lib.lists.flatten [
|
||||
kotlin
|
||||
kotlin-language-server
|
||||
];
|
||||
}
|
5
users/profiles/programming/lua.nix
Normal file
5
users/profiles/programming/lua.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
home.packages = with pkgs; lib.lists.flatten [
|
||||
lua-language-server
|
||||
];
|
||||
}
|
6
users/profiles/programming/nim.nix
Normal file
6
users/profiles/programming/nim.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
nim
|
||||
nimlsp
|
||||
];
|
||||
}
|
18
users/profiles/programming/python.nix
Normal file
18
users/profiles/programming/python.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
home.packages = with pkgs; lib.lists.flatten [
|
||||
python310
|
||||
(with python310Packages; [
|
||||
black
|
||||
isort
|
||||
jupyter
|
||||
mypy
|
||||
nose
|
||||
pip
|
||||
pyflakes
|
||||
pyls-isort
|
||||
pytest
|
||||
])
|
||||
pyright
|
||||
pipenv
|
||||
];
|
||||
}
|
5
users/profiles/programming/racket.nix
Normal file
5
users/profiles/programming/racket.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
racket
|
||||
];
|
||||
}
|
11
users/profiles/programming/rust.nix
Normal file
11
users/profiles/programming/rust.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
(rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
|
||||
extensions = [
|
||||
"rust-src"
|
||||
"rust-analyzer"
|
||||
];
|
||||
}))
|
||||
gcc
|
||||
];
|
||||
}
|
6
users/profiles/programming/zig.nix
Normal file
6
users/profiles/programming/zig.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
zig
|
||||
zls
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue