global/programming -> profiles/programming
This commit is contained in:
parent
97601ae155
commit
8ed1633716
14 changed files with 28 additions and 28 deletions
|
@ -25,7 +25,7 @@
|
|||
shells.all
|
||||
starship
|
||||
tmux
|
||||
];
|
||||
] ++ builtins.attrValues profiles.programming;
|
||||
|
||||
home = {
|
||||
stateVersion = config.system.stateVersion;
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
environment.systemPackages = with pkgs; lib.lists.flatten [
|
||||
lua-language-server
|
||||
];
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
nim
|
||||
nimlsp
|
||||
];
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
racket
|
||||
];
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
zig
|
||||
zls
|
||||
];
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
environment.systemPackages = with pkgs; lib.lists.flatten [
|
||||
home.packages = with pkgs; lib.lists.flatten [
|
||||
haskell-language-server
|
||||
ghc
|
||||
cabal-install
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
home.packages = with pkgs; [
|
||||
openjdk19
|
||||
clang-tools
|
||||
gradle
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
environment.systemPackages = with pkgs; lib.lists.flatten [
|
||||
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
|
||||
];
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
environment.systemPackages = with pkgs; lib.lists.flatten [
|
||||
home.packages = with pkgs; lib.lists.flatten [
|
||||
python310
|
||||
(with python310Packages; [
|
||||
black
|
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
|
||||
];
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
home.packages = with pkgs; [
|
||||
(rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
|
||||
extensions = [
|
||||
"rust-src"
|
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