mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
13 lines
217 B
Nix
13 lines
217 B
Nix
{pkgs, ...}: {
|
|
programs.vivaldi = {
|
|
enable = true;
|
|
commandLineArgs = [
|
|
"--no-default-browser-check"
|
|
];
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
DEFAULT_BROWSER = "${pkgs.vivaldi}/bin/vivaldi";
|
|
};
|
|
}
|