fix: move steam to system packages, ensure proper scaling
This commit is contained in:
parent
ec4f1f48da
commit
62c7c3ab0d
4 changed files with 20 additions and 1 deletions
|
|
@ -8,7 +8,6 @@
|
|||
signal-desktop
|
||||
element-desktop
|
||||
bitwarden-desktop
|
||||
steam
|
||||
|
||||
# Terminal applications
|
||||
gh # github
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./essentials
|
||||
./misc_hardware
|
||||
./system_pkgs
|
||||
./utils
|
||||
];
|
||||
|
||||
|
|
|
|||
7
modules/system_pkgs/default.nix
Normal file
7
modules/system_pkgs/default.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
# Packages that *need* to be installed on a system
|
||||
# and not a user level qwq
|
||||
imports = [
|
||||
./steam.nix
|
||||
];
|
||||
}
|
||||
12
modules/system_pkgs/steam.nix
Normal file
12
modules/system_pkgs/steam.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
|
||||
package = pkgs.steam.override {
|
||||
extraEnv = {
|
||||
STEAM_FORCE_DESKTOPUI_SCALING = 1.5;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Reference in a new issue