Compare commits

..

4 Commits

Author SHA1 Message Date
coolneng b6abc055b2 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/c3aa7b8938b17aebd2deecf7be0636000d62a2b9' (2024-08-14)
  → 'github:NixOS/nixpkgs/8a3354191c0d7144db9756a74755672387b702ba' (2024-08-18)
2024-08-19 22:30:58 +02:00
coolneng 1e93af6f06 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/a58bc8ad779655e790115244571758e8de055e3d' (2024-08-11)
  → 'github:NixOS/nixpkgs/c3aa7b8938b17aebd2deecf7be0636000d62a2b9' (2024-08-14)
2024-08-15 22:31:06 +02:00
coolneng 725e6309ea
Enable media key support for Firefox audio 2024-08-13 14:23:36 +02:00
coolneng e00f3fe3a9
Adapt MPV with scripts to upstream changes 2024-08-13 14:22:31 +02:00
3 changed files with 8 additions and 4 deletions

View File

@ -305,11 +305,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1723362943, "lastModified": 1723991338,
"narHash": "sha256-dFZRVSgmJkyM0bkPpaYRtG/kRMRTorUIDj8BxoOt1T4=", "narHash": "sha256-Grh5PF0+gootJfOJFenTTxDTYPidA3V28dqJ/WV7iis=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a58bc8ad779655e790115244571758e8de055e3d", "rev": "8a3354191c0d7144db9756a74755672387b702ba",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -83,4 +83,7 @@ in {
explore_songs = 100 explore_songs = 100
''; '';
}; };
# MPRIS integration
services.playerctld.enable = true;
} }

View File

@ -3,7 +3,8 @@
with pkgs; with pkgs;
let let
custom-mpv = (pkgs.wrapMpv pkgs.mpv-unwrapped { custom-mpv = (mpv-unwrapped.wrapper {
mpv = mpv-unwrapped;
scripts = with mpvScripts; [ sponsorblock-minimal mpv-cheatsheet ]; scripts = with mpvScripts; [ sponsorblock-minimal mpv-cheatsheet ];
}); });