Correction des dossier lié à Steam

This commit is contained in:
2026-08-10 14:06:31 +02:00
parent 77d1451eed
commit 177ee9253e
3 changed files with 5 additions and 4 deletions
@@ -0,0 +1,22 @@
{
lib,
config,
pkgs,
...
}:
with lib;
let
cfg = config.os.apps.games.protonge;
in
{
options.os.apps.games.protonge = {
enable = mkEnableOption "System pipewire service";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
umu-launcher
];
};
}