dotfiles/home/features/desktop/hyprland/default.nix

10 lines
190 B
Nix
Raw Normal View History

2023-09-30 19:47:41 +00:00
{ config, inputs, pkgs, ... }: {
wayland.windowManager.hyprland = {
enable = true;
systemdIntegration = true;
extraConfig = ''
# hyprland config goes here
'';
};
}