Compare commits
No commits in common. "30225c26784a434e8b3a816bae150b4447486711" and "4b7f28b93b5fa5523082a8d0bb7c50d340ad6ba3" have entirely different histories.
30225c2678
...
4b7f28b93b
|
@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
hash = "sha256-wBWfSyR8LGtug/mCD0bJ4lbdN3trIA/03AnCxZoEOSA=";
|
hash = "sha256-wBWfSyR8LGtug/mCD0bJ4lbdN3trIA/03AnCxZoEOSA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-OQPUWqJAts8DbFNSsC/CmMCbuZ9TVxRTR05O7oiodKI=";
|
cargoSha256 = "sha256-DDXMsH5wA6Q3jFGjYBkU3x9yOto3zeUSHP6ifkveJe0=";
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
|
|
@ -6,28 +6,23 @@
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
programs.steam.extraPackages =
|
programs.steam.package = pkgs.steam.override {
|
||||||
config.fonts.packages
|
extraLibraries =
|
||||||
++ (with pkgs; [
|
pkgs:
|
||||||
|
with config.hardware.opengl;
|
||||||
|
if pkgs.hostPlatform.is64bit then
|
||||||
|
[ package ] ++ extraPackages
|
||||||
|
else
|
||||||
|
[ package32 ] ++ extraPackages32;
|
||||||
|
|
||||||
|
extraPkgs =
|
||||||
|
pkgs: with pkgs; [
|
||||||
capitaine-cursors
|
capitaine-cursors
|
||||||
bibata-cursors
|
bibata-cursors
|
||||||
mangohud
|
mangohud
|
||||||
xdg-user-dirs
|
xdg-user-dirs
|
||||||
gamescope
|
];
|
||||||
|
};
|
||||||
# gamescope compatibility??
|
|
||||||
xorg.libXcursor
|
|
||||||
xorg.libXi
|
|
||||||
xorg.libXinerama
|
|
||||||
xorg.libXScrnSaver
|
|
||||||
libpng
|
|
||||||
libpulseaudio
|
|
||||||
libvorbis
|
|
||||||
stdenv.cc.cc.lib
|
|
||||||
libkrb5
|
|
||||||
keyutils
|
|
||||||
]);
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
protontricks
|
protontricks
|
||||||
bottles
|
bottles
|
||||||
|
|
|
@ -130,7 +130,7 @@ with colors;
|
||||||
declare-option str black1 "rgb:202020"
|
declare-option str black1 "rgb:202020"
|
||||||
declare-option str black2 "rgb:272727"
|
declare-option str black2 "rgb:272727"
|
||||||
declare-option str black3 "rgb:3a3a3a"
|
declare-option str black3 "rgb:3a3a3a"
|
||||||
declare-option str orange ${orange}
|
declare-option str orange "rgb:f5a97f"
|
||||||
declare-option str teal "rgb:8bd5ca"
|
declare-option str teal "rgb:8bd5ca"
|
||||||
declare-option str flamingo "rgb:f0c6c6"
|
declare-option str flamingo "rgb:f0c6c6"
|
||||||
declare-option str gray0 "rgb:606060"
|
declare-option str gray0 "rgb:606060"
|
||||||
|
@ -146,7 +146,7 @@ with colors;
|
||||||
declare-option str overlay1 "rgb:9a9a9a"
|
declare-option str overlay1 "rgb:9a9a9a"
|
||||||
|
|
||||||
# Tree-sitter (<https://git.sr.ht/~hadronized/kak-tree-sitter>)
|
# Tree-sitter (<https://git.sr.ht/~hadronized/kak-tree-sitter>)
|
||||||
set-face global ts_attribute "%opt{cyan}"
|
set-face global ts_attribute "%opt{blue}"
|
||||||
set-face global ts_comment "%opt{overlay0}+i"
|
set-face global ts_comment "%opt{overlay0}+i"
|
||||||
set-face global ts_conceal "%opt{mauve}+i"
|
set-face global ts_conceal "%opt{mauve}+i"
|
||||||
set-face global ts_constant "%opt{orange}"
|
set-face global ts_constant "%opt{orange}"
|
||||||
|
@ -208,7 +208,7 @@ with colors;
|
||||||
set-face global ts_string_regexp "%opt{orange}"
|
set-face global ts_string_regexp "%opt{orange}"
|
||||||
set-face global ts_string_escape "%opt{mauve}"
|
set-face global ts_string_escape "%opt{mauve}"
|
||||||
set-face global ts_string_special "%opt{blue}"
|
set-face global ts_string_special "%opt{blue}"
|
||||||
set-face global ts_string_special_path "%opt{orange}"
|
set-face global ts_string_special_path "%opt{green}"
|
||||||
set-face global ts_string_special_symbol "%opt{mauve}"
|
set-face global ts_string_special_symbol "%opt{mauve}"
|
||||||
set-face global ts_string_symbol "%opt{red}"
|
set-face global ts_string_symbol "%opt{red}"
|
||||||
set-face global ts_tag "%opt{mauve}"
|
set-face global ts_tag "%opt{mauve}"
|
||||||
|
@ -217,7 +217,7 @@ with colors;
|
||||||
set-face global ts_text_title "%opt{mauve}"
|
set-face global ts_text_title "%opt{mauve}"
|
||||||
set-face global ts_type "%opt{yellow}"
|
set-face global ts_type "%opt{yellow}"
|
||||||
set-face global ts_type_enum_variant "%opt{flamingo}"
|
set-face global ts_type_enum_variant "%opt{flamingo}"
|
||||||
set-face global ts_variable "%opt{blue}"
|
set-face global ts_variable "%opt{white}"
|
||||||
set-face global ts_variable_builtin "%opt{red}"
|
set-face global ts_variable_builtin "%opt{red}"
|
||||||
set-face global ts_variable_other_member "%opt{teal}"
|
set-face global ts_variable_other_member "%opt{teal}"
|
||||||
set-face global ts_variable_parameter "%opt{maroon}+i"
|
set-face global ts_variable_parameter "%opt{maroon}+i"
|
||||||
|
|
Loading…
Reference in a new issue