mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
feat: init
This commit is contained in:
commit
c19ea940bd
320 changed files with 23845 additions and 0 deletions
23
home-manager/modules/firefox/default.nix
Executable file
23
home-manager/modules/firefox/default.nix
Executable file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
pkgs,
|
||||
flake,
|
||||
nur,
|
||||
...
|
||||
}: let
|
||||
inherit (flake.config.people) user0;
|
||||
in {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
package = pkgs.firefox;
|
||||
profiles = {
|
||||
${user0} = {
|
||||
isDefault = true;
|
||||
search = import ./config/search.nix;
|
||||
bookmarks = import ./config/bookmarks.nix;
|
||||
settings = import ./config/settings.nix;
|
||||
extensions = import ./config/extensions.nix {inherit nur;};
|
||||
userChrome = builtins.readFile ./config/userChrome.css;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue