15 lines
274 B
Nix
15 lines
274 B
Nix
{ options, config, lib, pkgs, ...}:
|
|
with lib;
|
|
let cfg = config.modules.desktop.game.steam;
|
|
in {
|
|
options.modules.desktop.game.steam = {
|
|
enable = mkBoolOpt false;
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
users.users.sako.packages = with pkgs; [
|
|
steam
|
|
];
|
|
};
|
|
}
|