Compare commits

..

No commits in common. "097b89a14a057498fbefce4025342036395df2e4" and "3f89ee01471b245cb7f9e9989cb38b78d2241002" have entirely different histories.

2 changed files with 23 additions and 18 deletions

30
flake.lock generated
View File

@ -319,11 +319,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1762815613, "lastModified": 1762705862,
"narHash": "sha256-a9IT5scvHH8TrL73dp0eoMNU9hEvHwglxj2rXviBHdg=", "narHash": "sha256-XgUhFKe64OwCXShxKCvqsq3F7nVAFM6DFdUUbL7iQYA=",
"owner": "ggml-org", "owner": "ggml-org",
"repo": "llama.cpp", "repo": "llama.cpp",
"rev": "ece0f5c1771f1835e66900d4168233f0430d819d", "rev": "b8595b16e69e3029e06be3b8f6635f9812b2bc3f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -341,11 +341,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1762826586, "lastModified": 1762653944,
"narHash": "sha256-KlPcXOxxyv+KNcf7yNFQ4DGVFbOpITqHfvMcAUYrL7E=", "narHash": "sha256-zAgyqF6bPFGCe9WcZdskvxS3qmMPOh15TBF6yxbai78=",
"owner": "Infinidoge", "owner": "Infinidoge",
"repo": "nix-minecraft", "repo": "nix-minecraft",
"rev": "1a4fa22ec6e9f2ece24fca273352463b75f6f7c0", "rev": "8fa3e5e2763f7dfc7ab665609167a4e6796518f4",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -372,11 +372,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1762756533, "lastModified": 1762498405,
"narHash": "sha256-HiRDeUOD1VLklHeOmaKDzf+8Hb7vSWPVFcWwaTrpm+U=", "narHash": "sha256-Zg/SCgCaAioc0/SVZQJxuECGPJy+OAeBcGeA5okdYDc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c2448301fb856e351aab33e64c33a3fc8bcf637d", "rev": "6faeb062ee4cf4f105989d490831713cc5a43ee1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -487,11 +487,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1762737305, "lastModified": 1762630873,
"narHash": "sha256-5zN6jJ6KKBGiJeK3Q4+afZfJU7VyyUgehOAA3zYegTc=", "narHash": "sha256-3oBDTcYuTFk2e5xINUvXkmGy/NCosajTeFFZIgyrpZE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "srvos", "repo": "srvos",
"rev": "c04379f95fca70b38cdd45a1a7affe6d4226912b", "rev": "84e1e515d32e2d92098ed2a8d102d71ac58676e5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -548,11 +548,11 @@
"trackerlist": { "trackerlist": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1762816066, "lastModified": 1762643267,
"narHash": "sha256-cY7ZBS+09UjIOxsNplSgNT/3eTViWPPt2f73N++mx30=", "narHash": "sha256-sUIPE5DEQlFNsL6v5msPrep8hiPGmu7EqLmyyPS80F8=",
"owner": "ngosang", "owner": "ngosang",
"repo": "trackerslist", "repo": "trackerslist",
"rev": "98f6c0dc02dff860f7750b920a35d038d264586e", "rev": "bcc072876c90e230ade099b14e8ddbbe06df40c6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -4,6 +4,11 @@
pkgs, pkgs,
... ...
}: }:
let
# mbedtls_2 is deprecated, override to fix build
openrgb_package = pkgs.openrgb.override { mbedtls_2 = pkgs.mbedtls; };
in
{ {
systemd.services.no-rgb = systemd.services.no-rgb =
let let
@ -11,7 +16,7 @@
pkgs.writeShellApplication { pkgs.writeShellApplication {
name = "no-rgb"; name = "no-rgb";
runtimeInputs = with pkgs; [ runtimeInputs = with pkgs; [
openrgb openrgb_package
coreutils coreutils
gnugrep gnugrep
]; ];
@ -40,10 +45,10 @@
services.hardware.openrgb = { services.hardware.openrgb = {
enable = true; enable = true;
package = pkgs.openrgb-with-all-plugins; package = openrgb_package;
motherboard = "amd"; motherboard = "amd";
}; };
services.udev.packages = [ pkgs.openrgb-with-all-plugins ]; services.udev.packages = [ openrgb_package ];
hardware.i2c.enable = true; hardware.i2c.enable = true;
} }