nixos-config/system/wm/hyprland.nix

28 lines
397 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
# Import wayland config
imports = [ ./wayland.nix
./pipewire.nix
./dbus.nix
];
# Security
security = {
pam.services.swaylock = {
text = ''
auth include login
'';
};
};
programs = {
hyprland = {
enable = true;
xwayland = {
enable = true;
};
};
};
}