cleaned up packages.nix

This commit is contained in:
Gerg-L 2023-05-21 18:24:37 -04:00
parent e1d4cb64c2
commit 2f04dc0e23

View file

@ -1,14 +1,15 @@
{pkgs, ...}: { {
environment = { pkgs,
defaultPackages = []; #don't install anything by default lib,
systemPackages = [ ...
}: {
environment.defaultPackages = lib.mkForce [
pkgs.efibootmgr #efi editor pkgs.efibootmgr #efi editor
pkgs.pciutils #lspci pkgs.pciutils #lspci
pkgs.alsa-utils #volume control pkgs.alsa-utils #volume control
pkgs.xclip #commandline clipboard access pkgs.xclip #commandline clipboard access
pkgs.bottom #view tasks pkgs.bottom #view tasks
pkgs.nix-tree #view packages pkgs.nix-tree #view packages
pkgs.nix-output-monitor pkgs.nix-output-monitor #nom nom nom nom];
]; ];
};
} }