chore: remove figsoda packages
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-09-12 13:30:14 -04:00
parent bb5d2d380a
commit 1d23ec588b
6 changed files with 19 additions and 52 deletions

View file

@ -3,8 +3,6 @@
home-manager,
lib,
nh,
nix-melt,
nurl,
pkgs,
self,
...
@ -29,7 +27,7 @@
};
nix = {
# FIXME: vulnerability with <= 2.24.5
# FIXME: wait for this to reach nixos-unstable https://pr-tracker.nelim.org/?pr=341007
package = pkgs.nixVersions.nix_2_24.overrideAttrs (o: rec {
version = "2.24.6";
@ -97,27 +95,19 @@
update-notifier = false
'';
environment.systemPackages =
(builtins.attrValues {
# Peripherals
inherit
(pkgs)
hdparm
pciutils
usbutils
rar
;
})
++ [
nix-melt.packages.${pkgs.system}.default
environment.systemPackages = builtins.attrValues {
# Peripherals
inherit
(pkgs)
hdparm
pciutils
usbutils
rar
;
};
(nurl.packages.${pkgs.system}.default.override {
nix = config.nix.package;
})
];
home-manager = let
inherit (lib) mapAttrs' mkIf mkOption nameValuePair types;
home-manager.users = let
inherit (lib) mkIf mkOption types;
inherit (config.vars) mainUser;
default = {
@ -141,20 +131,11 @@
./home/trash-d
];
# Cache devShells
home.file = mapAttrs' (n: v:
nameValuePair ".cache/devShells/${n}" {
source = v;
})
self.devShells.${pkgs.system};
home.stateVersion = config.system.stateVersion;
};
in {
users = {
root = default;
greeter = mkIf (config.services.greetd.enable) default;
${mainUser} = default;
};
root = default;
greeter = mkIf (config.services.greetd.enable) default;
${mainUser} = default;
};
}

View file

@ -70,7 +70,7 @@ defaultSession: {
pkgs.r2modman
self.packages.${pkgs.system}.protonhax
# FIXME:Ryujinx ACNH crashes on OpenGL AND Vulkan
# FIXME: Ryujinx ACNH crashes on OpenGL AND Vulkan
# https://github.com/Ryujinx/Ryujinx/issues/6993
# https://github.com/Ryujinx/Ryujinx/issues/6708
self.packages.${pkgs.system}.yuzu

Binary file not shown.

BIN
flake.nix

Binary file not shown.

View file

@ -9,11 +9,6 @@ let
repo = "nix-fast-build";
};
nurl = mkDep {
owner = "matt1432";
repo = "nurl";
};
nix-index-db = mkDep {
owner = "Mic92";
repo = "nix-index-database";
@ -24,14 +19,6 @@ let
repo = "nh";
};
# FIXME: go back to upstream once fixed
nix-melt = mkDep {
# owner = "nix-community";
owner = "bryango";
repo = "nix-melt";
ref = "rust-1.80-fix-build";
};
# These are here to make sure all 'systems' are the same
flake-utils = mkInput {
owner = "numtide";
@ -140,8 +127,7 @@ let
repo = "hyprgrass";
};
# FIXME: use mkDep when it stops breaking
hyprpaper = mkInput {
hyprpaper = mkDep {
owner = "hyprwm";
repo = "hyprpaper";
};

View file

@ -15,7 +15,7 @@ in
src = home-llm-src;
# FIXME: https://github.com/acon96/home-llm/issues/214
# FIXME: remove this on next release https://github.com/acon96/home-llm/issues/214
postPatch = ''
substituteInPlace ./custom_components/llama_conversation/manifest.json \
--replace-warn "huggingface-hub==0.23.0" "huggingface-hub>=0.23.0"