starsector: init and compatability fix
This commit is contained in:
parent
d294132e24
commit
c9896917b0
|
@ -19,6 +19,7 @@ in
|
|||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
discord
|
||||
vesktop
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -172,7 +172,7 @@ in
|
|||
"systemctl --user start hyprpolkitagent"
|
||||
|
||||
"[workspace 2 silent] steam --disable-gpu-compositing" # nvidia pls let me have nice things
|
||||
"[workspace 8 silent] discord"
|
||||
"[workspace 8 silent] vesktop"
|
||||
"[workspace 9 silent] 1password"
|
||||
"[workspace 1 silent] zen"
|
||||
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
{ ... }:
|
||||
|
||||
final: prev: {
|
||||
starsector = prev.starsector.overrideAttrs (prevAttrs: {
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/starsector --set __GL_THREADED_OPTIMIZATIONS=0
|
||||
wrapProgram $out/bin/starsector --set __GL_THREADED_OPTIMIZATIONS 0
|
||||
'';
|
||||
|
||||
});
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@ in
|
|||
pyfa
|
||||
|
||||
unzip
|
||||
|
||||
microsoft-edge
|
||||
];
|
||||
|
||||
environment.pathsToLink = [ "/libexec" ];
|
||||
|
@ -64,6 +66,7 @@ in
|
|||
_1password = enabled;
|
||||
obs-studio = enabled;
|
||||
cli-apps.helix = enabled;
|
||||
starsector = enabled;
|
||||
};
|
||||
|
||||
desktop.hyprland = {
|
||||
|
@ -103,7 +106,7 @@ in
|
|||
|
||||
windowrulev2 = [
|
||||
"workspace 8 silent, class:^(steam)$, title:^(Friends List)"
|
||||
"workspace 8 silent, class:^(discord)$, title:^(Discord)"
|
||||
"workspace 8 silent, class:^(vesktop)$, title:^(Discord)"
|
||||
"workspace 7 silent, class:^(com.obsproject.Studio)$"
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue