This commit is contained in:
alsaiduq-lab 2026-02-14 18:44:25 -07:00
parent 5248625459
commit 037fa84664
2 changed files with 11 additions and 6 deletions

View file

@ -56,8 +56,8 @@
flake = false; flake = false;
}; };
hu-tao-cursor = { firefly-cursor = {
url = "git+ssh://git@github.com/alsaiduq-lab/Hu-Tao-Animated-Cursor"; url = "git+ssh://git@github.com/alsaiduq-lab/animated-cursors?ref=firefly";
}; };
ghostty = { ghostty = {
@ -108,7 +108,7 @@
nix-gaming, nix-gaming,
unstable, unstable,
ghostty, ghostty,
hu-tao-cursor, firefly-cursor,
dankMaterialShell, dankMaterialShell,
pinix, pinix,
disko, disko,
@ -121,7 +121,10 @@
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
unstablePkgs = unstable.legacyPackages.${system}; unstablePkgs = import unstable {
inherit system;
config.allowUnfree = true;
};
customPkgs = import "${self}/pkgs" { customPkgs = import "${self}/pkgs" {
inherit pkgs; inherit pkgs;
@ -158,7 +161,7 @@
(final: prev: { (final: prev: {
quickshell = inputs.quickshell.packages.${system}.default.withModules [final.qt6Packages.qtwebsockets]; quickshell = inputs.quickshell.packages.${system}.default.withModules [final.qt6Packages.qtwebsockets];
ghostty = inputs.ghostty.packages.${system}.default; ghostty = inputs.ghostty.packages.${system}.default;
hu-tao-animated-cursor = inputs.hu-tao-cursor.packages.${system}.default; firefly-cursor = inputs.firefly-cursor.packages.${system}.default;
grim-hyprland = inputs.grim-hyprland.packages.${system}.default; grim-hyprland = inputs.grim-hyprland.packages.${system}.default;
dms-shell = inputs.dankMaterialShell.packages.${system}.default; dms-shell = inputs.dankMaterialShell.packages.${system}.default;
pinix = inputs.pinix.packages.${system}.default; pinix = inputs.pinix.packages.${system}.default;
@ -169,6 +172,7 @@
dgop = unstablePkgs.dgop; dgop = unstablePkgs.dgop;
hyprland = inputs.hyprland.packages.${system}.default; hyprland = inputs.hyprland.packages.${system}.default;
dw-proton = inputs.dw-proton.packages.${system}.default; dw-proton = inputs.dw-proton.packages.${system}.default;
ollama = unstablePkgs.ollama-cuda;
}) })
(final: prev: { (final: prev: {
inherit inherit

View file

@ -1,7 +1,8 @@
{ pkgs, ... }:
{ {
services.ollama = { services.ollama = {
enable = true; enable = true;
acceleration = "cuda"; package = pkgs.ollama;
loadModels = []; loadModels = [];
}; };
} }