global/programming -> profiles/programming

This commit is contained in:
Infinidoge 2023-09-07 17:00:28 -04:00
parent 97601ae155
commit 8ed1633716
14 changed files with 28 additions and 28 deletions

View file

@ -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;

View file

@ -1,5 +0,0 @@
{ pkgs, lib, ... }: {
environment.systemPackages = with pkgs; lib.lists.flatten [
lua-language-server
];
}

View file

@ -1,6 +0,0 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
nim
nimlsp
];
}

View file

@ -1,5 +0,0 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
racket
];
}

View file

@ -1,6 +0,0 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
zig
zls
];
}

View file

@ -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

View file

@ -1,5 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }: {
environment.systemPackages = with pkgs; [ home.packages = with pkgs; [
openjdk19 openjdk19
clang-tools clang-tools
gradle gradle

View file

@ -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
]; ];

View file

@ -0,0 +1,5 @@
{ pkgs, lib, ... }: {
home.packages = with pkgs; lib.lists.flatten [
lua-language-server
];
}

View file

@ -0,0 +1,6 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
nim
nimlsp
];
}

View file

@ -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

View file

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
racket
];
}

View file

@ -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"

View file

@ -0,0 +1,6 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
zig
zls
];
}