mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
24 lines
488 B
Nix
Executable file
24 lines
488 B
Nix
Executable file
{
|
|
pkgs,
|
|
flake,
|
|
nur,
|
|
...
|
|
}: let
|
|
inherit (flake.config.people) user0;
|
|
in {
|
|
programs.firefox = {
|
|
enable = true;
|
|
package = pkgs.firefox;
|
|
profiles = {
|
|
${user0} =
|
|
{
|
|
isDefault = true;
|
|
}
|
|
// (import ./config/bookmarks {inherit flake;})
|
|
// (import ./config/extensions {inherit nur;})
|
|
// (import ./config/search {inherit flake;})
|
|
// (import ./config/settings)
|
|
// (import ./config/themes);
|
|
};
|
|
};
|
|
}
|