summaryrefslogblamecommitdiff
path: root/nixos/wayfire.nix
blob: 10ae1f63455cf1af719e76beb22216435f9ebaaa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                   



                            
 
                    


          
           
 





                            

    
{ config, lib, pkgs, modulesPath, ... }:
{
  imports = [
    ./wmonly.nix
  ];

  services.xserver.displayManager.sx.enable = true;

  security.pam.services.swaylock = {};

  environment.systemPackages = with pkgs; [
    # ---- wayfire ----
    #wayfire-with-plugins
    #wayfirePlugins.wcm
    #wayfirePlugins.wf-shell

    # ---- sway ----
    swayfx
    swaybg
    bemenu
    swayimg

    # ---- common utils ----
    xdg-desktop-portal-wlr
    waybar
    alacritty
    swaylock
    wdisplays
  ];
}