summaryrefslogtreecommitdiff
path: root/nixos/wayfire.nix
blob: d0e98032d239ddc85580c143e0bdc1729680fd06 (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
{ 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

    swayfx
    swaybg
    bemenu
  ];
}