realized I was inheriting nipkgs in my nixosSystems

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
This commit is contained in:
Gerg-L 2023-02-13 20:30:06 -05:00
parent 0132cde3f7
commit dc2db4a9bc
45 changed files with 449 additions and 1878 deletions

View file

@ -1,27 +1,24 @@
{pkgs, ...}: {
_: {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
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
cava #pretty audio
pipes-rs # more fun things
pkgs.cava #pretty audio
pkgs.pipes-rs # more fun things
#gui apps
pavucontrol #gui volume control
pcmanfm #file manager
pkgs.pavucontrol #gui volume control
pkgs.pcmanfm #file manager
#big gui apps
librewolf #best browser
pkgs.librewolf #best browser
];
};
}