Home: Disable broken packages (rider, beets)
This commit is contained in:
@ -41,7 +41,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
modules = {
|
modules = {
|
||||||
beets.enable = !headless;
|
# TODO: Reenable after build-failure on 2025-07-18
|
||||||
|
beets.enable = false; # !headless;
|
||||||
|
|
||||||
btop.enable = true;
|
btop.enable = true;
|
||||||
|
|
||||||
|
@ -83,6 +83,7 @@
|
|||||||
# Add any extra libraries you want accessible to Rider here
|
# Add any extra libraries you want accessible to Rider here
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# TODO: Broken, jetbrains.jdk doesn't build (see nixpkgs #425328)
|
||||||
unity-rider = pkgs.jetbrains.rider.overrideAttrs (attrs: {
|
unity-rider = pkgs.jetbrains.rider.overrideAttrs (attrs: {
|
||||||
postInstall =
|
postInstall =
|
||||||
''
|
''
|
||||||
@ -118,9 +119,9 @@
|
|||||||
# Unity Stuff
|
# Unity Stuff
|
||||||
# TODO: Unity module
|
# TODO: Unity module
|
||||||
# unityhub # TODO: Wait for https://nixpk.gs/pr-tracker.html?pr=422785
|
# unityhub # TODO: Wait for https://nixpk.gs/pr-tracker.html?pr=422785
|
||||||
unity-rider
|
# unity-rider
|
||||||
dotnetCore
|
# dotnetCore
|
||||||
mono
|
# mono
|
||||||
|
|
||||||
blender
|
blender
|
||||||
godot_4
|
godot_4
|
||||||
@ -135,17 +136,17 @@
|
|||||||
|
|
||||||
file = lib.mkMerge [
|
file = lib.mkMerge [
|
||||||
{
|
{
|
||||||
".local/share/applications/jetbrains-rider.desktop".source = let
|
# ".local/share/applications/jetbrains-rider.desktop".source = let
|
||||||
desktopFile = pkgs.makeDesktopItem {
|
# desktopFile = pkgs.makeDesktopItem {
|
||||||
name = "jetbrains-rider";
|
# name = "jetbrains-rider";
|
||||||
desktopName = "Rider";
|
# desktopName = "Rider";
|
||||||
exec = "\"${unity-rider}/bin/rider\"";
|
# exec = "\"${unity-rider}/bin/rider\"";
|
||||||
icon = "rider";
|
# icon = "rider";
|
||||||
type = "Application";
|
# type = "Application";
|
||||||
# Don't show desktop icon in search or run launcher
|
# # Don't show desktop icon in search or run launcher
|
||||||
extraConfig.NoDisplay = "true";
|
# extraConfig.NoDisplay = "true";
|
||||||
};
|
# };
|
||||||
in "${desktopFile}/share/applications/jetbrains-rider.desktop";
|
# in "${desktopFile}/share/applications/jetbrains-rider.desktop";
|
||||||
|
|
||||||
".var/app/com.valvesoftware.Steam/config/MangoHud/MangoHud.conf".source = ../../../config/mangohud/MangoHud.conf;
|
".var/app/com.valvesoftware.Steam/config/MangoHud/MangoHud.conf".source = ../../../config/mangohud/MangoHud.conf;
|
||||||
}
|
}
|
||||||
|
@ -103,6 +103,9 @@
|
|||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = pkgs.linuxPackages_zen;
|
kernelPackages = pkgs.linuxPackages_zen;
|
||||||
|
|
||||||
|
# kernelParams = ["quiet"];
|
||||||
|
# plymouth.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
Reference in New Issue
Block a user