mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 06:23:54 -05:00
19 lines
438 B
Nix
19 lines
438 B
Nix
{ pkgs, lib, config, ... }: {
|
|
|
|
options = {
|
|
desktopConfig.windowManagers.sway.enable =
|
|
lib.mkEnableOption "Sway window manager session.";
|
|
};
|
|
|
|
config = lib.mkIf config.desktopConfig.windowManagers.sway.enable {
|
|
|
|
desktopConfig.displayManagers.lightdm.enable = lib.mkDefault true;
|
|
|
|
programs.sway.enable = true;
|
|
|
|
services.dbus.packages = [ pkgs.gcr ];
|
|
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
};
|
|
}
|