summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-28 21:09:28 -0600
committerChristian <[email protected]>2026-01-28 21:09:28 -0600
commitbc42b2965be6706648988785c82fe0c8df787f6f (patch)
tree8ca8b46e6a6ad77362a34433c9d8d2711c4139d7
parentcc98b5d3cec0134eb0f7ff7e4e94c1146d510e46 (diff)
Basic firefox config
-rw-r--r--modules/common.nix1
-rw-r--r--modules/home/christian.nix13
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;
}