18 lines
284 B
Nix
18 lines
284 B
Nix
{username, ...}: {
|
|
programs.firefox = {
|
|
enable = true;
|
|
profiles = {
|
|
"${username}" = {
|
|
extensions.force = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
systemd.user.services."firefox-autostart" = {
|
|
serviceConfig = {
|
|
ExecStart = "";
|
|
ExecStop = "";
|
|
};
|
|
};
|
|
}
|