feat: switch to my own streamcontroller fork
This commit is contained in:
parent
b7b4b64a98
commit
8483dbd642
|
@ -1437,11 +1437,11 @@
|
|||
},
|
||||
"nixpkgs-streamcontroller": {
|
||||
"locked": {
|
||||
"lastModified": 1724014496,
|
||||
"narHash": "sha256-2+fJJtJ2BEkiIUl//7ysrMRW/whuw4/oX/xL/CFfSDM=",
|
||||
"lastModified": 1724230610,
|
||||
"narHash": "sha256-9CtPvclJqe+ugCIB95xB+ncJtVg4uSFtSYgeIGzFNWQ=",
|
||||
"owner": "sifmelcara",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "1e6aa887f401957d4d3fd01934e6e176eea9aa9a",
|
||||
"rev": "c64fa0f66ccf338831f5034573db7f2ae6e37dc9",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -1,7 +1,19 @@
|
|||
{ inputs, lib, ... }:
|
||||
{
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
nixp = import inputs.nixpkgs-streamcontroller { system = "x86_64-linux"; };
|
||||
inherit (nixp) streamcontroller;
|
||||
streamcontroller = nixp.streamcontroller.overrideAttrs (_prev: {
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "patrickdag";
|
||||
repo = "streamcontroller";
|
||||
rev = "392d1696b2157c35de0c8e177c9f158371df9ec2";
|
||||
hash = "sha256-e6MbqS2Iq/Pe7U8qvxFPENBJX55fHcdgfSw5QgoUt54=";
|
||||
};
|
||||
});
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
|
||||
".config/OrcaSlicer"
|
||||
|
||||
".config/streamcontroller"
|
||||
".local/share/streamcontroller"
|
||||
|
||||
# For nextcloud client install
|
||||
"Nextcloud"
|
||||
".config/Nextcloud"
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
xdg.configFile."mpv/mpv.conf".text = ''
|
||||
vo=gpu-next
|
||||
hwdec=auto-safe
|
||||
volume=30
|
||||
volume=50
|
||||
'';
|
||||
xdg.configFile."mpv/input.conf".text = ''
|
||||
UP add volume 2
|
||||
|
|
Loading…
Reference in a new issue