module: global & core -> global/*
This commit is contained in:
parent
68f344acf0
commit
1f0035cddd
6 changed files with 171 additions and 73 deletions
48
modules/global/packages.nix
Normal file
48
modules/global/packages.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
# Use the latest Linux kernel
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
# Remove all default packages
|
||||
environment.defaultPackages = lib.mkForce [ ];
|
||||
|
||||
# Packages wanted everywhere
|
||||
environment.systemPackages = with pkgs; [
|
||||
bat
|
||||
binutils
|
||||
btrfs-progs
|
||||
coreutils-doge
|
||||
curl
|
||||
direnv
|
||||
dnsutils
|
||||
dosfstools
|
||||
exfat # Windows drives
|
||||
fd
|
||||
ffmpeg
|
||||
git
|
||||
htop
|
||||
iputils
|
||||
jq
|
||||
lynx
|
||||
manix
|
||||
moreutils
|
||||
neofetch
|
||||
nmap
|
||||
ntfs3g # Windows drives
|
||||
parted
|
||||
ripgrep
|
||||
rsync
|
||||
skim
|
||||
sshfs
|
||||
strace
|
||||
tealdeer
|
||||
tree
|
||||
unixtools.whereis
|
||||
unzip
|
||||
usbutils
|
||||
utillinux
|
||||
vim
|
||||
wget
|
||||
whois
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue