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