Seporate dev things so it isn't just one big list.
This commit is contained in:
parent
3b4867d58f
commit
198f39d5aa
|
@ -13,6 +13,7 @@
|
|||
|
||||
home.gui
|
||||
home.dev
|
||||
home.dev
|
||||
home.network_manager
|
||||
home.sway
|
||||
home.vscode
|
||||
|
|
6
profiles/dev/archives.nix
Normal file
6
profiles/dev/archives.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
unzip
|
||||
zstd
|
||||
];
|
||||
}
|
6
profiles/dev/debugging.nix
Normal file
6
profiles/dev/debugging.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
gdb
|
||||
lldb
|
||||
];
|
||||
}
|
|
@ -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
5
profiles/dev/editors.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
nano
|
||||
];
|
||||
}
|
11
profiles/dev/extra.nix
Normal file
11
profiles/dev/extra.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
jq
|
||||
ripgrep
|
||||
fd
|
||||
pv
|
||||
file
|
||||
tmux
|
||||
socat
|
||||
];
|
||||
}
|
7
profiles/dev/info.nix
Normal file
7
profiles/dev/info.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
neofetch
|
||||
inxi
|
||||
htop
|
||||
];
|
||||
}
|
12
profiles/dev/network.nix
Normal file
12
profiles/dev/network.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
curl
|
||||
wget
|
||||
dig
|
||||
whois
|
||||
dnsutils
|
||||
rsync
|
||||
openssh
|
||||
mosh
|
||||
];
|
||||
}
|
14
profiles/dev/programming.nix
Normal file
14
profiles/dev/programming.nix
Normal 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
7
profiles/dev/vcs.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
darcs
|
||||
subversion
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue