little fix

This commit is contained in:
afoucaultc 2026-07-10 16:54:59 +02:00
parent f8f24ac865
commit 38075c8e1b
4 changed files with 17 additions and 8 deletions

View file

@ -1 +1 @@
/nix/store/sf7ax7nqdrd15sjzqrc3i6485d45vwfh-home-manager-files/.config/kitty/diff.conf
/nix/store/my4snz6g4kjvhaxrnqqasm1ipgzp52ag-home-manager-files/.config/kitty/diff.conf

View file

@ -1 +1 @@
/nix/store/sf7ax7nqdrd15sjzqrc3i6485d45vwfh-home-manager-files/.config/kitty/kitty.conf
/nix/store/my4snz6g4kjvhaxrnqqasm1ipgzp52ag-home-manager-files/.config/kitty/kitty.conf

12
flake.lock generated
View file

@ -194,11 +194,11 @@
]
},
"locked": {
"lastModified": 1783618078,
"narHash": "sha256-F43DGcBoIO8xOZFAfodg3jy0VghB9NGdb6xbTYAIx1A=",
"lastModified": 1783689750,
"narHash": "sha256-iMO/Ypany7DPXD6D7sQgH7METtEUihnOvdb+A9ehn8k=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "144f4e36d0186195037da9fce80a727108978070",
"rev": "79e6082586b3680ff32c8e75127545058f074fa4",
"type": "github"
},
"original": {
@ -531,11 +531,11 @@
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1783673680,
"narHash": "sha256-ardRVG+ipnyyxVdIsbLMy5foO6gDqN/yIi8v10HTJqs=",
"lastModified": 1783692676,
"narHash": "sha256-6FXlRphexzMo3HpoN0NxEl7uQoE8llWeNJrD8NMA/CY=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "0b655af52b5b89bcceb88737efdc3a7498e751ee",
"rev": "4471c6a218fe813ad4838c400866c8845d3eba6b",
"type": "github"
},
"original": {

View file

@ -36,4 +36,13 @@
#nixpkgs.config.permittedInsecurePackages = [
# "electron-39.8.10"
#];
nixpkgs.overlays = [
(final: prev: {
streamlink = prev.streamlink.overridePythonAttrs (old: {
doCheck = false;
# or, to skip just the one test:
# disabledTests = (old.disabledTests or []) ++ [ "test_read_timeout" ];
});
})
];
}