diff --git a/config/services/yourspotify.nix b/config/services/yourspotify.nix index cdf7b62..aa7535c 100644 --- a/config/services/yourspotify.nix +++ b/config/services/yourspotify.nix @@ -13,7 +13,7 @@ rekeyFile = config.node.secretsDir + "/spotifySecret.age"; }; services.your_spotify = { - enable = true; + #enable = true; spotifySecretFile = config.age.secrets.spotifySecret.path; settings = { SPOTIFY_PUBLIC = "5397a3f2a75949459da343a5e7851bd9"; diff --git a/hosts/desktopnix/default.nix b/hosts/desktopnix/default.nix index 5a85e7c..00fd670 100644 --- a/hosts/desktopnix/default.nix +++ b/hosts/desktopnix/default.nix @@ -37,10 +37,6 @@ services.xserver.xkb = { layout = "de"; }; - virtualisation.podman = { - enable = true; - dockerCompat = true; - }; services.logkeys = { enable = true; device = "/dev/input/event15"; diff --git a/patches/PR/354038.diff b/patches/PR/354038.diff new file mode 100644 index 0000000..ff6e50a --- /dev/null +++ b/patches/PR/354038.diff @@ -0,0 +1,41 @@ +diff --git a/pkgs/applications/misc/bambu-studio/default.nix b/pkgs/applications/misc/bambu-studio/default.nix +index 481f365717064..82b6de9391b79 100644 +--- a/pkgs/applications/misc/bambu-studio/default.nix ++++ b/pkgs/applications/misc/bambu-studio/default.nix +@@ -1,9 +1,6 @@ + { + stdenv, + lib, +- openexr, +- jemalloc, +- c-blosc, + binutils, + fetchFromGitHub, + cmake, +@@ -55,17 +52,6 @@ let + "--enable-debug=no" + ]; + }); +- +- openvdb' = openvdb.overrideAttrs (old: { +- buildInputs = [ +- openexr +- boost179 +- tbb_2021_11 +- jemalloc +- c-blosc +- ilmbase +- ]; +- }); + in + stdenv.mkDerivation rec { + pname = "bambu-studio"; +@@ -111,7 +97,7 @@ stdenv.mkDerivation rec { + mpfr + nlopt + opencascade-occt_7_6 +- openvdb' ++ openvdb + pcre + tbb_2021_11 + webkitgtk_4_0 diff --git a/pkgs/scripts/fetch-prs.sh b/pkgs/scripts/fetch-prs.sh index 99e71ea..99a2cb7 100755 --- a/pkgs/scripts/fetch-prs.sh +++ b/pkgs/scripts/fetch-prs.sh @@ -1,5 +1,5 @@ # dependencies: wcurl -PRS=() +PRS=("354038") if [ ! -f flake.nix ]; then echo "Not in a flake top level"