chore: add container to firefox
This commit is contained in:
parent
a55bb2aa35
commit
9d1ce9a69e
4 changed files with 19 additions and 10 deletions
|
@ -2,6 +2,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
osConfig,
|
osConfig,
|
||||||
|
config,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
lib.mkIf osConfig.programs.firefox.enable {
|
lib.mkIf osConfig.programs.firefox.enable {
|
||||||
|
@ -9,8 +10,8 @@ lib.mkIf osConfig.programs.firefox.enable {
|
||||||
enable = true;
|
enable = true;
|
||||||
# Installed by nixpkgs module
|
# Installed by nixpkgs module
|
||||||
package = null;
|
package = null;
|
||||||
profiles.ny = {
|
profiles.${config.home.username} = {
|
||||||
name = "ny";
|
name = config.home.username;
|
||||||
isDefault = true;
|
isDefault = true;
|
||||||
userChrome = ''
|
userChrome = ''
|
||||||
/* Hides the native tabs */
|
/* Hides the native tabs */
|
||||||
|
@ -26,6 +27,14 @@ lib.mkIf osConfig.programs.firefox.enable {
|
||||||
settings = {
|
settings = {
|
||||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||||
};
|
};
|
||||||
|
containers = {
|
||||||
|
uni = {
|
||||||
|
color = "blue";
|
||||||
|
icon = "briefcase";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
containersForce = true;
|
||||||
|
|
||||||
search = {
|
search = {
|
||||||
default = "DuckDuckGo";
|
default = "DuckDuckGo";
|
||||||
force = true;
|
force = true;
|
||||||
|
|
|
@ -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 = {
|
assigns = {
|
||||||
"2" = [ { app_id = "firefox"; } ];
|
"2" = [ { app_id = "firefox"; } ];
|
||||||
"3" = [ { app_id = "obsidian"; } ];
|
"3" = [ { app_id = "obsidian"; } ];
|
||||||
|
|
|
@ -79,7 +79,10 @@
|
||||||
sway.enable = true;
|
sway.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
security.polkit.enable = true;
|
security = {
|
||||||
|
polkit.enable = true;
|
||||||
|
package = pkgs.polkit-kde-agent;
|
||||||
|
};
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
defaultUserShell = pkgs.fish;
|
defaultUserShell = pkgs.fish;
|
||||||
|
|
|
@ -154,7 +154,10 @@
|
||||||
MOZ_ENABLE_WAYLAND = 1;
|
MOZ_ENABLE_WAYLAND = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
security.polkit.enable = true;
|
security.polkit = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.polkit-kde-agent;
|
||||||
|
};
|
||||||
|
|
||||||
virtualisation.libvirtd.enable = true;
|
virtualisation.libvirtd.enable = true;
|
||||||
programs.virt-manager.enable = true;
|
programs.virt-manager.enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue