remove home suites
This commit is contained in:
parent
40b0d84f53
commit
2c475dd099
63 changed files with 163 additions and 198 deletions
10
home/develop/common.nix
Normal file
10
home/develop/common.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
cmake
|
||||
clang
|
||||
gnumake
|
||||
ninja
|
||||
pkg-config
|
||||
nodePackages.prettier
|
||||
];
|
||||
}
|
3
home/develop/docs.nix
Normal file
3
home/develop/docs.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.man.generateCaches = true;
|
||||
}
|
3
home/develop/langs/c.nix
Normal file
3
home/develop/langs/c.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [clang-tools buckle gdb lldb];
|
||||
}
|
6
home/develop/langs/csharp.nix
Normal file
6
home/develop/langs/csharp.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
dotnet-sdk_10
|
||||
roslyn-ls
|
||||
];
|
||||
}
|
5
home/develop/langs/elixir.nix
Normal file
5
home/develop/langs/elixir.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
elixir_1_17
|
||||
];
|
||||
}
|
6
home/develop/langs/go.nix
Normal file
6
home/develop/langs/go.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
go
|
||||
gopls
|
||||
];
|
||||
}
|
9
home/develop/langs/haskell.nix
Normal file
9
home/develop/langs/haskell.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
ghc
|
||||
haskell-language-server
|
||||
cabal-install
|
||||
hlint
|
||||
haskellPackages.retrie
|
||||
];
|
||||
}
|
8
home/develop/langs/js.nix
Normal file
8
home/develop/langs/js.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
vtsls
|
||||
nodejs
|
||||
typescript
|
||||
vscode-langservers-extracted
|
||||
];
|
||||
}
|
6
home/develop/langs/lua.nix
Normal file
6
home/develop/langs/lua.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
stylua
|
||||
lua-language-server
|
||||
];
|
||||
}
|
3
home/develop/langs/nix.nix
Normal file
3
home/develop/langs/nix.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [nil nixd alejandra nixfmt-rfc-style];
|
||||
}
|
5
home/develop/langs/rust.nix
Normal file
5
home/develop/langs/rust.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
rustup
|
||||
];
|
||||
}
|
6
home/develop/langs/uiua.nix
Normal file
6
home/develop/langs/uiua.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
(uiua.overrideAttrs {buildFeatures = "full";})
|
||||
uiua386
|
||||
];
|
||||
}
|
3
home/develop/langs/zig.nix
Normal file
3
home/develop/langs/zig.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [zig zls];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue