mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
added ungoogled_chromium browser
This commit is contained in:
parent
648f7a8937
commit
fa17aa6f55
10 changed files with 70 additions and 27 deletions
12
src/user/modules/gui/modules/browsers/firefox/default.nix
Normal file
12
src/user/modules/gui/modules/browsers/firefox/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue