Compare commits

..

4 commits

Author SHA1 Message Date
Bruno BELANYI 9f3811ea3b modules: programs: steam: respect XDG conventions
All checks were successful
continuous-integration/drone/push Build is passing
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.
2021-09-15 19:23:24 +02:00
Bruno BELANYI 5c95ba1113 machines: aramis: programs: enable steam 2021-09-15 19:23:24 +02:00
Bruno BELANYI 37bb7fd625 modules: programs: add steam 2021-09-15 19:23:24 +02:00
Bruno BELANYI 45321072fc modules: add 'programs' directory 2021-09-15 16:48:10 +02:00
5 changed files with 56 additions and 0 deletions

View file

@ -11,6 +11,7 @@
./home.nix
./networking.nix
./profiles.nix
./programs.nix
./services.nix
./sound.nix
];

View file

@ -0,0 +1,7 @@
{ ... }:
{
my.programs = {
# Steam configuration
steam.enable = true;
};
}

View file

@ -5,6 +5,7 @@
imports = [
./hardware
./home.nix
./programs
./services
./system
];

View file

@ -0,0 +1,8 @@
# Program-related modules
{ ... }:
{
imports = [
./steam.nix
];
}

View file

@ -0,0 +1,39 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.programs.steam;
in
{
options.my.programs.steam = with lib; {
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 {
programs.steam = {
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 "$@"
'')
];
};
}