flakes/modules/system/packages.nix

23 lines
336 B
Nix

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