Mise à jour et ajout de proton-ge & steam

This commit is contained in:
2026-08-10 00:16:26 +02:00
parent b985fb589c
commit cd3a057d2a
12 changed files with 168 additions and 56 deletions
+22
View File
@@ -0,0 +1,22 @@
{
lib,
config,
pkgs,
...
}:
with lib;
let
cfg = config.os.protonge;
in
{
options.os.protonge = {
enable = mkEnableOption "System pipewire service";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
umu-launcher
];
};
}