flakes/modules/system/packages.nix
Cilly Leang e7588e0be0
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
{system,rin}/packages: cleanup
2026-05-30 21:24:30 +10:00

25 lines
361 B
Nix

{ pkgs, ... }: {
imports = [ ./packages-gui.nix ];
environment.systemPackages = with pkgs; [
# ecryptfs
efibootmgr
fd
git
git-crypt
htop
jq
kitty.terminfo
libarchive
lf
msr-tools
ncdu
neovim
nfs-utils
ntfs3g
ripgrep
rsync
sshfs
wget
];
environment.variables.EDITOR = "nvim";
}