mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
8a58bbbaf0
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
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";
|
|
};
|
|
}
|