mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
added ways to use different branches of nixpkgs made unfree packages have to specified switched to nix master branch moved sxhkd from a seperate flake switched spotify and maim versions because both are broken on nixos-unstable right now moved afk-cmds from local to remote added flake-utils for easier devShell decleration switched my mom's laptop to stable branch
24 lines
719 B
Nix
24 lines
719 B
Nix
_: {pkgs, ...}: {
|
|
environment = {
|
|
defaultPackages = []; #don't install anything by default
|
|
systemPackages = [
|
|
pkgs.efibootmgr #efi editor
|
|
pkgs.pciutils #lspci
|
|
pkgs.alsa-utils #volume control
|
|
pkgs.xclip #commandline clipboard access
|
|
pkgs.btrfs-progs #for external harddrive
|
|
pkgs.feh #for wallpaper #directly used tui apps
|
|
pkgs.bottom #view tasks
|
|
pkgs.bc #terminal calculator
|
|
pkgs.nix-tree #view packages
|
|
#pointless stuff
|
|
pkgs.cava #pretty audio
|
|
pkgs.pipes-rs # more fun things
|
|
#gui apps
|
|
pkgs.pavucontrol #gui volume control
|
|
pkgs.pcmanfm #file manager
|
|
#big gui apps
|
|
pkgs.librewolf #best browser
|
|
];
|
|
};
|
|
}
|