241 current 2024-11-16 18:59:54 24.05.20241110.9256f7c 6.11.7 *
This commit is contained in:
parent
61ad987fe4
commit
615a109143
3 changed files with 31 additions and 10 deletions
|
@ -87,5 +87,6 @@
|
|||
|
||||
../../modules/software/browser/firefox.nix
|
||||
../../modules/software/browser/brave.nix
|
||||
../../modules/software/browser/nyxt.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -3,18 +3,14 @@
|
|||
programs.firejail = {
|
||||
enable = true;
|
||||
wrappedBinaries = {
|
||||
firefox = {
|
||||
executable = "${pkgs.firefox}/bin/firefox";
|
||||
profile = "${pkgs.firejail}/etc/firejail/firefox.profile";
|
||||
nuclear = {
|
||||
executable = "${pkgs.nuclear}/bin/nuclear";
|
||||
profile = "${pkgs.firejail}/etc/firejail/nuclear.profile";
|
||||
extraArgs = [
|
||||
# Required for U2F USB stick
|
||||
"--ignore=private-dev"
|
||||
# Enforce dark mode
|
||||
"--env=GTK_THEME=Adwaita:dark"
|
||||
# Enable system notifications
|
||||
"--dbus-user.talk=org.freedesktop.Notifications"
|
||||
# For screen sharing
|
||||
"--dbus-user.talk=org.freedesktop.portal.*"
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -33,14 +29,33 @@
|
|||
];
|
||||
};
|
||||
|
||||
nuclear = {
|
||||
executable = "${pkgs.nuclear}/bin/nuclear";
|
||||
profile = "${pkgs.firejail}/etc/firejail/nuclear.profile";
|
||||
firefox = {
|
||||
executable = "${pkgs.firefox}/bin/firefox";
|
||||
profile = "${pkgs.firejail}/etc/firejail/firefox.profile";
|
||||
extraArgs = [
|
||||
# Required for U2F USB stick
|
||||
"--ignore=private-dev"
|
||||
# Enforce dark mode
|
||||
"--env=GTK_THEME=Adwaita:dark"
|
||||
# Enable system notifications
|
||||
"--dbus-user.talk=org.freedesktop.Notifications"
|
||||
# For screen sharing
|
||||
"--dbus-user.talk=org.freedesktop.portal.*"
|
||||
];
|
||||
};
|
||||
|
||||
nyxt = {
|
||||
executable = "${pkgs.nyxt}/bin/nyxt";
|
||||
profile = "${pkgs.firejail}/etc/firejail/chromium-browser.profile";
|
||||
extraArgs = [
|
||||
# Required for U2F USB stick
|
||||
"--ignore=private-dev"
|
||||
# Enforce dark mode
|
||||
"--env=GTK_THEME=Adwaita:dark"
|
||||
# Enable system notifications
|
||||
"--dbus-user.talk=org.freedesktop.Notifications"
|
||||
# For screen sharing
|
||||
"--dbus-user.talk=org.freedesktop.portal.*"
|
||||
];
|
||||
};
|
||||
|
||||
|
|
5
modules/software/browser/nyxt.nix
Normal file
5
modules/software/browser/nyxt.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
nyxt
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue