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
|
shells.all
|
||||||
starship
|
starship
|
||||||
tmux
|
tmux
|
||||||
];
|
] ++ builtins.attrValues profiles.programming;
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
stateVersion = config.system.stateVersion;
|
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, ... }: {
|
{ pkgs, lib, ... }: {
|
||||||
environment.systemPackages = with pkgs; lib.lists.flatten [
|
home.packages = with pkgs; lib.lists.flatten [
|
||||||
haskell-language-server
|
haskell-language-server
|
||||||
ghc
|
ghc
|
||||||
cabal-install
|
cabal-install
|
|
@ -1,5 +1,5 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
environment.systemPackages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
openjdk19
|
openjdk19
|
||||||
clang-tools
|
clang-tools
|
||||||
gradle
|
gradle
|
|
@ -1,5 +1,5 @@
|
||||||
{ pkgs, lib, ... }: {
|
{ pkgs, lib, ... }: {
|
||||||
environment.systemPackages = with pkgs; lib.lists.flatten [
|
home.packages = with pkgs; lib.lists.flatten [
|
||||||
kotlin
|
kotlin
|
||||||
kotlin-language-server
|
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, ... }: {
|
{ pkgs, lib, ... }: {
|
||||||
environment.systemPackages = with pkgs; lib.lists.flatten [
|
home.packages = with pkgs; lib.lists.flatten [
|
||||||
python310
|
python310
|
||||||
(with python310Packages; [
|
(with python310Packages; [
|
||||||
black
|
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, ... }: {
|
{ pkgs, ... }: {
|
||||||
environment.systemPackages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
(rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
|
(rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
|
||||||
extensions = [
|
extensions = [
|
||||||
"rust-src"
|
"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