blob: 689dee754b9d3306898c03c57bfd4a33704908a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
config,
pkgs,
lib,
...
}:
{
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
extraSessionCommands = ''
# -- Wayland fixes
# SDL:
export SDL_VIDEODRIVER=wayland
# QT (needs qt5.qtwayland in systemPackages):
export QT_QPA_PLATFORM=wayland-egl
export QT_WAYLAND_DISABLE_WINDOWDECORATION="1"
# Fix for some Java AWT applications (e.g. Android Studio),
# use this if they aren't displayed properly:
export _JAVA_AWT_WM_NONREPARENTING=1
cp ${../../../../modules/users/Rory/wallpaper.webp} ~/.cache/wallpaper.webp
'';
#(
#sleep 5
#${pkgs.swaybg}/bin/swaybg -i ${../../../../modules/users/Rory/wallpaper.webp}
#$ {pkgs.swayidle}/bin/swayidle -w timeout 300 'swaylock -f -i ${../../../../modules/users/Rory/wallpaper.webp}' 'swaymsg "output * dpms off"'
#$ {pkgs.swaylock}/bin/swaylock -f -i ${../../../../modules/users/Rory/wallpaper.webp}
#${pkgs.waybar}/bin/waybar
#) &
extraPackages = with pkgs; [
swaybg
#swayidle
#swaylock
waybar
wl-clipboard
grim
slurp
easyeffects
keepassxc
];
};
xdg.portal.wlr.enable = true;
}
|