configuration: prepare for browser changes
This commit is contained in:
parent
1ccceb3415
commit
c8d584f8a4
|
@ -1,6 +1,7 @@
|
|||
{ config, lib, pkgs, materusArg, ... }:
|
||||
let
|
||||
cfg = config.materus.profile.browser;
|
||||
osConfig = (if (builtins.hasAttr "osConfig" config._module.args) then config._module.args.osConfig else null);
|
||||
in
|
||||
{
|
||||
|
||||
|
@ -11,13 +12,14 @@ in
|
|||
|
||||
};
|
||||
#TODO: Make some config
|
||||
config = {
|
||||
config = lib.mkMerge [{
|
||||
home.packages = [
|
||||
(lib.mkIf cfg.firefox.enable config.materus.profile.packages.firefox)
|
||||
(lib.mkIf cfg.vivaldi.enable pkgs.vivaldi)
|
||||
(lib.mkIf cfg.brave.enable pkgs.brave)
|
||||
];
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue