summaryrefslogblamecommitdiff
path: root/nixos/wayfire.nix
blob: 004ad4345be8c09a558f570d99ba75c205629a4e (plain) (tree)


















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

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

  security.pam.services.swaylock = {};

  environment.systemPackages = with pkgs; [
    wayfire-with-plugins
    wayfirePlugins.wcm
    wayfirePlugins.wf-shell
    waybar
    alacritty
    swaylock
  ];
}