nixos-config/config/services/sway.nix

36 lines
955 B
Nix
Raw Normal View History

2022-01-18 11:14:54 +00:00
{ config, pkgs, lib, ... }:
{
systemd.user.targets.sway-session = {
description = "Sway compositor session";
documentation = [ "man:systemd.special(7)" ];
bindsTo = [ "graphical-session.target" ];
wants = [ "graphical-session-pre.target" ];
after = [ "graphical-session-pre.target" ];
};
programs.sway = {
enable = true;
extraPackages = with pkgs; [
swaylock
swayidle
xwayland
2022-01-19 08:28:39 +00:00
(python38.withPackages (ps: with ps; [ i3pystatus keyring ]))
2022-01-18 11:14:54 +00:00
];
extraSessionCommands = ''
export SDL_VIDEODRIVER=wayland
export QT_QPA_PLATFORM=wayland
export QT_WAYLAND_DISABLE_WINDOWDECORATION="1"
export _JAVA_AWT_WM_NONREPARENTING=1
export MOZ_ENABLE_WAYLAND=1
'';
};
2022-01-18 12:31:40 +00:00
services.xserver = {
enable = true;
displayManager.defaultSession = "sway";
displayManager.sddm.enable = true;
libinput.enable = true;
layout = "de";
xkbVariant = "neo";
};
2022-01-18 14:21:38 +00:00
}