fix(client): don't use ffmpeg unfree outside of wsl
This commit is contained in:
parent
05d931864e
commit
272e9f06ab
2 changed files with 8 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
(ffmpeg-full.override { withUnfree = true; })
|
ffmpeg-full
|
||||||
fastfetch
|
fastfetch
|
||||||
lazygit
|
lazygit
|
||||||
nixd
|
nixd
|
||||||
|
|
|
@ -36,4 +36,11 @@
|
||||||
mysqld.bind_address = "127.0.0.1";
|
mysqld.bind_address = "127.0.0.1";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.replaceDependencies.replacements = [
|
||||||
|
{
|
||||||
|
oldDependency = pkgs.ffmpeg-full;
|
||||||
|
newDependency = (pkgs.ffmpeg-full.override { withUnfree = true; });
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue