Many changes

This commit is contained in:
2025-05-01 16:59:04 +03:00
parent 13ee5dc830
commit 8540c5e6d3
12 changed files with 115 additions and 22 deletions
+15
View File
@@ -0,0 +1,15 @@
{ 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 {
programs.steam.enable = true;
};
}