fix: move steam to system packages, ensure proper scaling

This commit is contained in:
EinEtwas 2024-10-29 12:11:06 +01:00
parent ec4f1f48da
commit 62c7c3ab0d
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
4 changed files with 20 additions and 1 deletions

View file

@ -8,7 +8,6 @@
signal-desktop
element-desktop
bitwarden-desktop
steam
# Terminal applications
gh # github

View file

@ -2,6 +2,7 @@
imports = [
./essentials
./misc_hardware
./system_pkgs
./utils
];

View file

@ -0,0 +1,7 @@
{
# Packages that *need* to be installed on a system
# and not a user level qwq
imports = [
./steam.nix
];
}

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.steam = {
enable = true;
package = pkgs.steam.override {
extraEnv = {
STEAM_FORCE_DESKTOPUI_SCALING = 1.5;
};
};
};
}