mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
tor-browser on Wayland
This commit is contained in:
parent
383d387b39
commit
278d27ee4e
@ -22,6 +22,7 @@
|
|||||||
#../../modules/boxes.nix
|
#../../modules/boxes.nix
|
||||||
#../../modules/signal-desktop.nix
|
#../../modules/signal-desktop.nix
|
||||||
#../../modules/element-desktop.nix
|
#../../modules/element-desktop.nix
|
||||||
|
#../../modules/tor-browser.nix
|
||||||
#../../modules/autostart.nix
|
#../../modules/autostart.nix
|
||||||
#../../modules/wallpaper.nix
|
#../../modules/wallpaper.nix
|
||||||
#../../modules/fwupd-gnome.nix
|
#../../modules/fwupd-gnome.nix
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#../../modules/boxes.nix
|
#../../modules/boxes.nix
|
||||||
../../modules/signal-desktop.nix
|
../../modules/signal-desktop.nix
|
||||||
../../modules/element-desktop.nix
|
../../modules/element-desktop.nix
|
||||||
|
../../modules/tor-browser.nix
|
||||||
../../modules/autostart.nix
|
../../modules/autostart.nix
|
||||||
../../modules/wallpaper.nix
|
../../modules/wallpaper.nix
|
||||||
../../modules/fwupd-gnome.nix
|
../../modules/fwupd-gnome.nix
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
../../modules/boxes.nix
|
../../modules/boxes.nix
|
||||||
../../modules/signal-desktop.nix
|
../../modules/signal-desktop.nix
|
||||||
../../modules/element-desktop.nix
|
../../modules/element-desktop.nix
|
||||||
|
../../modules/tor-browser.nix
|
||||||
../../modules/autostart.nix
|
../../modules/autostart.nix
|
||||||
../../modules/wallpaper.nix
|
../../modules/wallpaper.nix
|
||||||
../../modules/fwupd-gnome.nix
|
../../modules/fwupd-gnome.nix
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#../../modules/boxes.nix
|
#../../modules/boxes.nix
|
||||||
#../../modules/signal-desktop.nix
|
#../../modules/signal-desktop.nix
|
||||||
#../../modules/element-desktop.nix
|
#../../modules/element-desktop.nix
|
||||||
|
#../../modules/tor-browser.nix
|
||||||
#../../modules/autostart.nix
|
#../../modules/autostart.nix
|
||||||
#../../modules/wallpaper.nix
|
#../../modules/wallpaper.nix
|
||||||
#../../modules/fwupd-gnome.nix
|
#../../modules/fwupd-gnome.nix
|
||||||
|
@ -32,7 +32,6 @@
|
|||||||
|
|
||||||
# Graphical apps
|
# Graphical apps
|
||||||
|
|
||||||
tor-browser-bundle-bin # Tor web browser
|
|
||||||
gnome-secrets # Password manager (Native Wayland client)
|
gnome-secrets # Password manager (Native Wayland client)
|
||||||
#keepassxc # Password manager
|
#keepassxc # Password manager
|
||||||
freetube # YouTube client
|
freetube # YouTube client
|
||||||
|
10
modules/tor-browser.nix
Normal file
10
modules/tor-browser.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
users.users.yoda = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
tor-browser-bundle-bin # Tor web browser.
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.sessionVariables.MOZ_ENABLE_WAYLAND = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) "1";
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user