a very large amount of testing took place, adding librewolf is proving to be a pain since the unstable version fails to build

This commit is contained in:
Gabriella Bere 2024-08-26 19:58:51 +01:00
parent f3a2d6c808
commit 501935bab6
5 changed files with 105 additions and 49 deletions

47
modules/packages.nix Normal file
View file

@ -0,0 +1,47 @@
{ config, lib, pkgs, stablepkgs, ... }: {
# All packaged needed from nixos-unstable
environment.systemPackages =
(with pkgs; [
neovim # nano is installed by default
wget
vesktop
prismlauncher
thunderbird
kdePackages.bluedevil
fastfetch
ungoogled-chromium
qbittorrent
obsidian
p7zip
unrar
wineWowPackages.stable
wine
(wine.override { wineBuild = "wine64"; })
wine64
wineWowPackages.staging
winetricks
wineWowPackages.waylandFull
vlc
krename
kdePackages.filelight
protonmail-bridge
obs-studio
pciutils
vial
git
qmk
dmidecode
wl-clipboard
lutris
tree
tenacity
mediawriter
home-manager
])
++
(with stablepkgs; [
# packages that are unstable on nixos-unstable can be moved here
]);
}