diff --git a/home/graphical/firefox/default.nix b/home/graphical/firefox/default.nix index 049a434..fb8be6a 100644 --- a/home/graphical/firefox/default.nix +++ b/home/graphical/firefox/default.nix @@ -2,6 +2,7 @@ pkgs, lib, osConfig, + config, ... }: lib.mkIf osConfig.programs.firefox.enable { @@ -9,8 +10,8 @@ lib.mkIf osConfig.programs.firefox.enable { enable = true; # Installed by nixpkgs module package = null; - profiles.ny = { - name = "ny"; + profiles.${config.home.username} = { + name = config.home.username; isDefault = true; userChrome = '' /* Hides the native tabs */ @@ -26,6 +27,14 @@ lib.mkIf osConfig.programs.firefox.enable { settings = { "toolkit.legacyUserProfileCustomizations.stylesheets" = true; }; + containers = { + uni = { + color = "blue"; + icon = "briefcase"; + }; + }; + containersForce = true; + search = { default = "DuckDuckGo"; force = true; diff --git a/home/sway/default.nix b/home/sway/default.nix index 5957c5c..fbb38e5 100644 --- a/home/sway/default.nix +++ b/home/sway/default.nix @@ -115,12 +115,6 @@ lib.mkIf osConfig.programs.sway.enable { #: }}} }; #: }}} - #: Startup {{{ - startup = [ - { command = "${config.services.kdeconnect.package}/bin/kdeconnect-indicator"; } - { command = "${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"; } - ]; - #: }}} assigns = { "2" = [ { app_id = "firefox"; } ]; "3" = [ { app_id = "obsidian"; } ]; diff --git a/hosts/marr/default.nix b/hosts/marr/default.nix index 05fef5d..7e3ee17 100644 --- a/hosts/marr/default.nix +++ b/hosts/marr/default.nix @@ -154,7 +154,10 @@ MOZ_ENABLE_WAYLAND = 1; }; - security.polkit.enable = true; + security.polkit = { + enable = true; + package = pkgs.polkit-kde-agent; + }; virtualisation.libvirtd.enable = true; programs.virt-manager.enable = true;