Update ankaa

This commit is contained in:
Ethan Simmons
2025-01-22 20:03:38 -06:00
parent 77c7c6b5b8
commit 36878b901b
5 changed files with 34 additions and 44 deletions

View File

@@ -27,6 +27,7 @@
, home-manager-unstable
, flake-utils
, sops-nix
, llama-cpp
, ...
}:
let
@@ -205,13 +206,19 @@
pkgs = import nixpkgs {
inherit system;
overlays = with overlays; [ printrun llama-cpp citrix ];
config.allowUnfree = true;
overlays = with overlays; [ printrun citrix ];
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-31.7.7"
];
};
};
localPackages = pkgs.lib.genAttrs flake-utils.lib.defaultSystems (system: {
kickoff-dot-desktop = pkgs.callPackage ./pkgs/kickoff-dot-desktop.nix {};
jhelioviewer = pkgs.callPackage ./pkgs/jhelioviewer.nix {};
llama-cpp = llama-cpp.packages.${system}.rocm;
}
);