Nixos: Disable some deprecated/changed stuff before update
This commit is contained in:
@ -205,7 +205,7 @@ rec {
|
|||||||
theme = "Foggy-Lake";
|
theme = "Foggy-Lake";
|
||||||
};
|
};
|
||||||
|
|
||||||
vscode.enable = true;
|
vscode.enable = false; # TODO: Had broken package ms-vscode-cpptools
|
||||||
|
|
||||||
waybar = {
|
waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -641,18 +641,20 @@ rec {
|
|||||||
# Realtime Motion Interpolation: https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645
|
# Realtime Motion Interpolation: https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645
|
||||||
mpv = {
|
mpv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# NOTE: wrapMpv explained here: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/applications/video/mpv/wrapper.nix#L84
|
|
||||||
|
# TODO: wrapMpv was removed
|
||||||
|
# Explained here: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/applications/video/mpv/wrapper.nix#L84
|
||||||
# wrapMpv gets two args: the mpv derivation and some options
|
# wrapMpv gets two args: the mpv derivation and some options
|
||||||
# Possible overrides for derivation: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/applications/video/mpv/default.nix#L222
|
# Possible overrides for derivation: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/applications/video/mpv/default.nix#L222
|
||||||
package = pkgs.wrapMpv (pkgs.mpv-unwrapped.override {vapoursynthSupport = true;}) {
|
# package = pkgs.wrapMpv (pkgs.mpv-unwrapped.override {vapoursynthSupport = true;}) {
|
||||||
youtubeSupport = true;
|
# youtubeSupport = true;
|
||||||
extraMakeWrapperArgs = [
|
# extraMakeWrapperArgs = [
|
||||||
"--prefix"
|
# "--prefix"
|
||||||
"LD_LIBRARY_PATH"
|
# "LD_LIBRARY_PATH"
|
||||||
":"
|
# ":"
|
||||||
"${pkgs.vapoursynth-mvtools}/lib"
|
# "${pkgs.vapoursynth-mvtools}/lib"
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
|
|
||||||
# Interactive Cheatsheets
|
# Interactive Cheatsheets
|
||||||
|
@ -86,7 +86,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
# Vulkan
|
# Vulkan
|
||||||
driSupport = true;
|
# driSupport = true; # NOTE: Deprecated
|
||||||
driSupport32Bit = true;
|
driSupport32Bit = true;
|
||||||
|
|
||||||
# AMD: https://nixos.wiki/wiki/AMD_GPU
|
# AMD: https://nixos.wiki/wiki/AMD_GPU
|
||||||
|
Reference in New Issue
Block a user