All checks were successful
Build iso when a new version is pushed / test (push) Successful in 21m41s
32 lines
282 B
Nix
32 lines
282 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
home-manager
|
|
vim
|
|
pciutils
|
|
pigz
|
|
htop
|
|
gnumake
|
|
git
|
|
neofetch
|
|
neovim
|
|
ntfs3g
|
|
clang
|
|
ninja
|
|
gdb
|
|
valgrind
|
|
wget
|
|
cmake
|
|
usbutils
|
|
man-pages
|
|
stress
|
|
cryptsetup
|
|
acpi
|
|
dconf
|
|
|
|
ffmpeg-full
|
|
nv-codec-headers
|
|
];
|
|
}
|