added ungoogled_chromium browser

This commit is contained in:
Bryan Ramos 2024-06-14 11:33:44 -04:00
parent 648f7a8937
commit fa17aa6f55
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
10 changed files with 70 additions and 27 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.modules.user.gui.browser.firefox;
in
{ options.modules.user.gui.browser.firefox = { enable = mkEnableOption "Enable Firefox browser"; };
config = mkIf cfg.enable {
programs.firefox.enable = true;
};
}