modules: programs: steam: respect XDG conventions
Steam wants to pollute HOME with `.steam*` files and folders, which are useless and annoying. We want to make sure the wrappers are preferred when installing, so use `lib.hiPrio` to ensure they get chosen.
This commit is contained in:
parent
7aa2a0f8fa
commit
27040532bd
|
@ -1,15 +1,39 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.my.programs.steam;
|
cfg = config.my.programs.steam;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.my.programs.steam = with lib; {
|
options.my.programs.steam = with lib; {
|
||||||
enable = mkEnableOption "steam configuration";
|
enable = mkEnableOption "steam configuration";
|
||||||
|
|
||||||
|
dataDir = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "$XDG_DATA_HOME/steamlib";
|
||||||
|
example = "/mnt/steam/";
|
||||||
|
description = ''
|
||||||
|
Which directory should be used as HOME to run steam.
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = builtins.map lib.hiPrio [
|
||||||
|
# Respect XDG conventions, leave my HOME alone
|
||||||
|
(pkgs.writeScriptBin "steam" ''
|
||||||
|
#!/bin/sh
|
||||||
|
mkdir -p "${cfg.dataDir}"
|
||||||
|
HOME="${cfg.dataDir}" exec ${pkgs.steam}/bin/steam "$@"
|
||||||
|
'')
|
||||||
|
# Same, for GOG and other such games
|
||||||
|
(pkgs.writeScriptBin "steam-run" ''
|
||||||
|
#!/bin/sh
|
||||||
|
mkdir -p "${cfg.dataDir}"
|
||||||
|
HOME="${cfg.dataDir}" exec ${pkgs.steam-run-native}/bin/steam-run "$@"
|
||||||
|
'')
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue