Add gaming apps

This commit is contained in:
2023-01-07 22:13:50 +00:00
parent 08f527f90c
commit 8752fb747f
6 changed files with 75 additions and 4 deletions

View File

@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
with lib;
with lib.my;
let cfg = config.modules.desktop.browsers.firefox;
in {
options.modules.desktop.browsers.firefox = {
enable = mkBoolOpt false;
};
config = mkIf cfg.enable {
home.programs.firefox = {
enable = true;
};
};
}