nixos/modules/desktop/browsers/firefox/default.nix
2023-07-09 01:06:28 +03:00

16 lines
294 B
Nix

{ options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.browsers.firefox;
in
{
options.modules.desktop.browsers.firefox = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
firefox
];
};
}