firefox options home-manager

This commit is contained in:
smayzy 2025-06-19 13:26:44 +02:00
parent 9cf2ae4a0f
commit 30be6bc525
2 changed files with 19 additions and 0 deletions

View File

@ -1,6 +1,11 @@
{ config, pkgs, ... }:
{
imports =
[
./modules/home-manager/firefox.nix
];
home.username = "smayzy";
home.homeDirectory = "/home/smayzy";
home.stateVersion = "25.05";

View File

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
programs.firefox = {
enable = true;
profiles.smayzy = {
settings = {
"browser.bookmarks_restore_default_bookmarks" = false;
};
};
};
}