diff options
| author | Christian <[email protected]> | 2026-01-28 21:09:28 -0600 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-01-28 21:09:28 -0600 |
| commit | bc42b2965be6706648988785c82fe0c8df787f6f (patch) | |
| tree | 8ca8b46e6a6ad77362a34433c9d8d2711c4139d7 | |
| parent | cc98b5d3cec0134eb0f7ff7e4e94c1146d510e46 (diff) | |
Basic firefox config
| -rw-r--r-- | modules/common.nix | 1 | ||||
| -rw-r--r-- | modules/home/christian.nix | 13 |
2 files changed, 13 insertions, 1 deletions
diff --git a/modules/common.nix b/modules/common.nix index 9100757..0287049 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -34,6 +34,7 @@ home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; + home-manager.backupFileExtension = "bak"; home-manager.extraSpecialArgs = { inherit inputs; }; environment.systemPackages = with pkgs; [ diff --git a/modules/home/christian.nix b/modules/home/christian.nix index d4b3b9b..cd48619 100644 --- a/modules/home/christian.nix +++ b/modules/home/christian.nix @@ -21,7 +21,18 @@ silent = true; }; - programs.firefox.enable = true; + programs.firefox = { + enable = true; + profiles.christian = { + name = "Christian"; + isDefault = true; + settings = { + "browser.newtabpage.activity-stream.feeds.section.topstories" = false; + "browser.aboutConfig.showWarning" = false; + }; + }; + }; + programs.home-manager.enable = true; } |
