Switched back to firefox-bin, added some tools

This commit is contained in:
Erwin Boskma 2021-11-29 08:05:46 +01:00
parent d81968fe9c
commit 3fa467e483
Signed by: erwin
GPG key ID: 270B20D17394F7E5
4 changed files with 21 additions and 12 deletions

View file

@ -41,7 +41,7 @@ in
config = mkIf (cfg.enable) { config = mkIf (cfg.enable) {
programs.firefox = { programs.firefox = {
enable = true; enable = true;
package = pkgs.firefox-wayland; package = pkgs.firefox-bin;
profiles = { profiles = {
private = { private = {

View file

@ -190,17 +190,17 @@ in
include /etc/sway/config.d/* include /etc/sway/config.d/*
''; '';
extraSessionCommands = # extraSessionCommands =
'' # ''
export _JAVA_AWT_WM_NONREPARENTING=1 # export _JAVA_AWT_WM_NONREPARENTING=1
export MOZ_ENABLE_WAYLAND=1 # export MOZ_ENABLE_WAYLAND=1
export MOZ_DBUS_REMOTE=1 # export MOZ_DBUS_REMOTE=1
export QT_QPA_PLATFORM=wayland # export QT_QPA_PLATFORM=wayland
export QT_WAYLAND_DISABLE_WINDOWDECORATION="1" # export QT_WAYLAND_DISABLE_WINDOWDECORATION="1"
export QT_QPA_PLATFORMTHEME=qt5ct # export QT_QPA_PLATFORMTHEME=qt5ct
export SDL_VIDEODRIVER=wayland # export SDL_VIDEODRIVER=wayland
export SSH_AUTH_SOCK="''${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh" # export SSH_AUTH_SOCK="''${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh"
''; # '';
wrapperFeatures = { wrapperFeatures = {
base = true; base = true;

View file

@ -36,5 +36,10 @@ in
}; };
programs.fish.enable = true; programs.fish.enable = true;
environment.systemPackages = with pkgs; [
dogdns
file
];
}; };
} }

View file

@ -68,6 +68,7 @@ in
home.packages = with pkgs; [ home.packages = with pkgs; [
bitwarden bitwarden
bottom
fd fd
git git
gnome.nautilus gnome.nautilus
@ -80,6 +81,8 @@ in
ripgrep ripgrep
signal-desktop signal-desktop
steam steam
steamcmd
steam-tui
tdesktop tdesktop
unzip unzip
wl-clipboard wl-clipboard
@ -181,6 +184,7 @@ in
QT_QPA_PLATFORMTHEME = "qt5ct"; QT_QPA_PLATFORMTHEME = "qt5ct";
SDL_VIDEODRIVER = "wayland"; SDL_VIDEODRIVER = "wayland";
SSH_AUTH_SOCK = ''''${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh''; SSH_AUTH_SOCK = ''''${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh'';
AMD_VULKAN_ICD = "RADV";
}; };
}; };