2024-08-28 01:46:28 +02:00

12 lines
201 B
Nix

{pkgs-stable, ...}: {
home.packages = with pkgs-stable; [
firefox
];
firefox = {
enable = true;
profile = {
"browser.startup.homepage" = "https://www.google.com";
};
};
}