cleanup, update

This commit is contained in:
TheK0tYaRa 2026-02-14 19:50:29 +02:00
parent d9f2d7ed7a
commit 87a20d410f
3 changed files with 14 additions and 65 deletions

18
flake.lock generated
View file

@ -320,11 +320,11 @@
"zon2nix": "zon2nix" "zon2nix": "zon2nix"
}, },
"locked": { "locked": {
"lastModified": 1770909583, "lastModified": 1771086270,
"narHash": "sha256-c9VlVV7fmO1g764SF7Z91Gry3Y3/dV1AAus0CeyTnTM=", "narHash": "sha256-mTCQuab0I2B/Naq0wveN9U9zWD/Hfu9SwsaKF0DSm4k=",
"owner": "ghostty-org", "owner": "ghostty-org",
"repo": "ghostty", "repo": "ghostty",
"rev": "d54f079517e30c407a1d86093f2255335a24b0e8", "rev": "61e347a2c278263dd1392c324feaee5fb9712ee5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -385,11 +385,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1770915843, "lastModified": 1771037579,
"narHash": "sha256-ZwU5wXKNqpOQvjNz6aBp1j5peiBZow1++6pLnk5VAhs=", "narHash": "sha256-NX5XuhGcsmk0oEII2PEtMRgvh2KaAv3/WWQsOpxAgR4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "6a1f7101d2c3ee87d485a87880d73b4665c6a4bd", "rev": "05e6dc0f6ed936f918cb6f0f21f1dad1e4c53150",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -644,11 +644,11 @@
}, },
"nixpkgs_8": { "nixpkgs_8": {
"locked": { "locked": {
"lastModified": 1770562336, "lastModified": 1771008912,
"narHash": "sha256-ub1gpAONMFsT/GU2hV6ZWJjur8rJ6kKxdm9IlCT0j84=", "narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d6c71932130818840fc8fe9509cf50be8c64634f", "rev": "a82ccc39b39b621151d6732718e3e250109076fa",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -56,61 +56,6 @@
intel-hw.overlays.default intel-hw.overlays.default
(import ./custom/overlays/default.nix) (import ./custom/overlays/default.nix)
(import ./custom/overlays/override.nix) (import ./custom/overlays/override.nix)
# (final: prev: {
# llama-cpp = prev.llama-cpp.overrideAttrs (old: {
# src = prev.fetchFromGitHub {
# owner = "ggml-org";
# repo = "llama.cpp";
# tag = "b7897";
# hash = "sha256-cc2tqEQEZCBEOQ+xJzmVK8ROjfsWOi6T2iX3KjpaAIU=";
# };
# nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.curl ];
# });
# pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
# (pyFinal: pyPrev: {
# haystack-ai = pyPrev.haystack-ai.overridePythonAttrs (old: rec {
# version = "2.23.0";
# src = final.fetchFromGitHub {
# owner = "deepset-ai";
# repo = "haystack";
# rev = "v${version}";
# hash = "sha256-KFgRKdhbHgjtpiuAeFq+0t0EUKKLOavbVplb0QnI/r8=";
# };
# propagatedBuildInputs =
# (old.propagatedBuildInputs or [ ])
# ++ (with pyPrev; [
# docstring-parser
# filetype
# jinja2
# openai
# ])
# ++ [
# pyFinal."haystack-experimental"
# ];
# meta = (old.meta or { }) // {
# broken = false;
# };
# });
# })
# ];
# winetricks = prev.winetricks.overrideAttrs (
# old:
# let
# version = "20260125";
# in
# {
# inherit version;
# src = final.fetchurl {
# url = "https://github.com/Winetricks/winetricks/archive/refs/tags/${version}.tar.gz";
# hash = "sha256-KJC9n7ut5GOOWLSZmiNycxkt8DtYUWrnuHceCcItL1Y=";
# };
# }
# );
# })
]; ];
hardware = { hardware = {
graphics = { graphics = {

View file

@ -64,7 +64,7 @@
python312Packages.huggingface-hub python312Packages.huggingface-hub
tor-browser tor-browser
winetricks winetricks
wineWowPackages.full wineWow64Packages.full
iperf iperf
sshuttle sshuttle
@ -348,6 +348,10 @@
enable = true; enable = true;
functions = { functions = {
fish_greeting = ""; fish_greeting = "";
nix-cleanup = ''
sudo nix-collect-garbage --delete-older-than 30d && \
sudo nix-store --optimise
'';
}; };
}; };
# #