Seporate dev things so it isn't just one big list.

This commit is contained in:
ChaotiCryptidz 2021-12-25 17:50:34 +00:00
parent 3b4867d58f
commit 198f39d5aa
10 changed files with 69 additions and 30 deletions

View file

@ -13,6 +13,7 @@
home.gui
home.dev
home.dev
home.network_manager
home.sway
home.vscode

View file

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

View file

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

View file

@ -1,30 +0,0 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
git
nano
curl
wget
jq
ripgrep
fd
htop
dig
pv
zstd
whois
dnsutils
nixpkgs-fmt
neofetch
inxi
file
rsync
tmux
socat
gdb
lldb
go
gopls
go-outline
goimports
];
}

5
profiles/dev/editors.nix Normal file
View file

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

11
profiles/dev/extra.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
jq
ripgrep
fd
pv
file
tmux
socat
];
}

7
profiles/dev/info.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
neofetch
inxi
htop
];
}

12
profiles/dev/network.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
curl
wget
dig
whois
dnsutils
rsync
openssh
mosh
];
}

View file

@ -0,0 +1,14 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
# Nix
nixpkgs-fmt
# Go
go
gopls
go-outline
goimports
# Zig
zig
zls
];
}

7
profiles/dev/vcs.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
git
darcs
subversion
];
}