Fix pob package

This commit is contained in:
2024-07-19 18:24:30 +02:00
parent b0d8884afe
commit a886c52c39
3 changed files with 98 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
{ pkgs, osConfig, ... }:
let
withCuda = if (osConfig.system.name == "gunter") then true else false;
pob = pkgs.qt6Packages.callPackage ../../packages/pob.nix { };
in
{
home.packages = with pkgs; [
@@ -28,8 +29,8 @@ in
kubectl
ncdu
nvd
nurl
nwg-look
path-of-building
pinentry
pre-commit
pulseaudio
@@ -105,5 +106,7 @@ in
(btop.override { cudaSupport = withCuda; })
# PrismLauncher
(prismlauncher.override { withWaylandGLFW = true; })
pob
];
}