Trying something else
This commit is contained in:
26
modules/packages/cli.nix
Normal file
26
modules/packages/cli.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
helix
|
||||
micro
|
||||
lazygit
|
||||
ripgrep
|
||||
fnm
|
||||
cmake
|
||||
ninja
|
||||
gradle
|
||||
netcat-gnu
|
||||
bitwarden-cli
|
||||
pwgen
|
||||
qrencode
|
||||
sl
|
||||
upx
|
||||
wakeonlan
|
||||
magic-wormhole
|
||||
httpie
|
||||
gh
|
||||
doctl
|
||||
qemu
|
||||
];
|
||||
}
|
||||
21
modules/packages/languages.nix
Normal file
21
modules/packages/languages.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
rustToolchain = pkgs.rust-bin.stable.latest.default.override {
|
||||
extensions = [ "rust-src" "rust-analyzer" ];
|
||||
targets = [ "aarch64-apple-darwin" ];
|
||||
};
|
||||
in
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
rustToolchain
|
||||
python313
|
||||
openjdk
|
||||
openjdk17
|
||||
lua
|
||||
luajit
|
||||
perl
|
||||
ruby
|
||||
go
|
||||
];
|
||||
}
|
||||
9
modules/packages/media.nix
Normal file
9
modules/packages/media.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
ffmpeg
|
||||
tesseract
|
||||
tectonic
|
||||
];
|
||||
}
|
||||
8
modules/packages/networking.nix
Normal file
8
modules/packages/networking.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
freerdp
|
||||
openmpi
|
||||
];
|
||||
}
|
||||
10
modules/packages/security.nix
Normal file
10
modules/packages/security.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
nmap
|
||||
nikto
|
||||
john
|
||||
rustscan
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user