nixos/modules/packages.nix
ISnortPennies b3cb8940d4 renamed configuration.nix to common.nix
moved sudo configuration to shells.nix
switched to kmscon
reorganized all packages removed a few
switched from scripts to shell aliases
set keep-outputs and keep-derivations to false
removed picom from laptop
2023-02-04 16:41:29 -05:00

28 lines
704 B
Nix

{pkgs, ...}: {
environment = {
defaultPackages = []; #don't install anything by default
systemPackages = with pkgs; [
efibootmgr #efi editor
pciutils #lspci
alsa-utils #volume control
xclip #commandline clipboard access
btrfs-progs #for external harddrive
feh #for wallpaper
#directly used tui apps
bottom #view tasks
bc #terminal calculator
nix-tree #view packages
#pointless stuff
cava #pretty audio
pipes-rs # more fun things
#gui apps
pavucontrol #gui volume control
pcmanfm #file manager
#big gui apps
webcord # talk to people (gross)
librewolf #best browser
];
};
}