Too much stuff

This commit is contained in:
Andrea Ciceri 2022-10-29 12:02:40 +02:00
parent ad4810b7db
commit 13ad21f74c
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
9 changed files with 234 additions and 53 deletions

View file

@ -1,6 +1,12 @@
{pkgs, ...}: {
programs.firefox = {
enable = true;
package = pkgs.wrapFirefox pkgs.firefox-unwrapped {
forceWayland = true;
extraPolicies = {
ExtensionSettings = {};
};
};
profiles.ccr = {
settings = {
"browser.startup.homepage" = "https://google.it";
@ -15,4 +21,9 @@
};
};
};
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = 1;
XDG_CURRENT_DESKTOP = "sway";
NIXOS_OZONE_WL = 1;
};
}