nixos-config/users/rouven/fixes.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2023-06-05 12:31:07 +02:00
{ pkgs, lib, ... }:
2023-01-21 19:03:24 +01:00
{
2023-06-05 12:31:07 +02:00
# fixes qt themes
environment.variables = {
"QT_STYLE_OVERRIDE" = lib.mkForce "kvantum";
"QT_QPA_PLATFORMTHEME" = lib.mkForce "Dracula";
};
2023-06-03 21:42:12 +02:00
# open ports for kde connect
networking.firewall = rec {
allowedTCPPortRanges = [{ from = 1714; to = 1764; }];
allowedUDPPortRanges = allowedTCPPortRanges;
};
2023-11-20 22:47:07 +01:00
# fix session commands for sway
programs.sway = {
enable = true;
extraSessionCommands = ''
source /etc/profile
test -f $HOME/.profile && source $HOME/.profile
export MOZ_ENABLE_WAYLAND=1
systemctl --user import-environment
'';
wrapperFeatures.gtk = true;
};
2023-07-09 22:49:16 +02:00
# wayland keylogger needs setuid
programs.wshowkeys.enable = true;
2023-01-21 19:03:24 +01:00
# fixes pam entries for swaylock
security.pam.services.swaylock.text = ''
# Account management.
account required pam_unix.so
# Authentication management.
auth sufficient pam_unix.so nullok likeauth try_first_pass
auth sufficient ${pkgs.fprintd}/lib/security/pam_fprintd.so
auth required pam_deny.so
# Password management.
password sufficient pam_unix.so nullok sha512
# Session management.
session required pam_env.so conffile=/etc/pam/environment readenv=0
session required pam_unix.so
'';
}