Y'all good steam

This commit is contained in:
2025-04-27 09:56:36 +03:00
parent 56f51ef292
commit 13ee5dc830
2 changed files with 18 additions and 0 deletions
+1
View File
@@ -8,5 +8,6 @@
./qutebrowser-config.nix ./qutebrowser-config.nix
./audio.nix ./audio.nix
./reaper.nix ./reaper.nix
./steam.nix
]; ];
} }
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, pkgs, ... }:
let
isEnabled =
config.azos.steam.enable;
in {
options.azos.steam.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
steam
];
};
}