about summary refs log blame commit diff
path: root/users/tazjin/nixos/modules/desktop.nix
blob: 7475a9804e34d4d7cc6c5c22e8ced16d75bca2de (plain) (tree)
1
2
3
4
5
6
7
8
9
                                       
                                  





                         
                               


                          
                          
                           


                    

                                 
 



                                                     
        


      








                                           
             

                 

             


                        



                                                                        


                                                                              



                                                                         





                                                                  
# EXWM and other desktop configuration.
{ config, depot, lib, pkgs, ... }:

{
  services = {
    pipewire = {
      enable = true;
      alsa.enable = true;
      alsa.support32Bit = true;
      pulse.enable = true;
    };

    blueman.enable = true;
    libinput.enable = true;

    xserver = {
      enable = true;
      xkb.layout = "us";
      xkb.options = "caps:super";

      displayManager.sessionPackages = [ pkgs.niri ];
      displayManager.gdm = {
        enable = true;
        wayland = true;
      };
    };
  };

  programs.xwayland.enable = true;

  environment.systemPackages = with pkgs; [
    # core packages
    niri
    xwayland-satellite
    swaylock

    # support tooling
    alacritty
    qt5.qtwayland
    sfwbar
    swayidle
    wdisplays
    wl-mirror
    xfce.xfce4-appfinder
  ];

  # Do not restart the display manager automatically
  systemd.services.display-manager.restartIfChanged = lib.mkForce false;

  # swaylock needs an empty PAM configuration, otherwise it locks the user out
  security.pam.services.swaylock = { };

  # enable theming support for Qt that is compatible with Chicago95 theme
  qt.enable = true;
  qt.platformTheme = "qt5ct";

  # If something needs more than 10s to stop it should probably be
  # killed.
  systemd.extraConfig = ''
    DefaultTimeoutStopSec=10s
  '';
}