Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
25 lines
361 B
Nix
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";
|
|
}
|