This repository has been archived on 2023-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dotfiles/modules/desktop/browsers/firefox.nix
2023-01-07 22:13:50 +00:00

16 lines
284 B
Nix

{ 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;
};
};
}