dotfiles/home/features/desktop/hyprland/default.nix
2023-09-30 14:47:41 -05:00

9 lines
190 B
Nix

{ config, inputs, pkgs, ... }: {
wayland.windowManager.hyprland = {
enable = true;
systemdIntegration = true;
extraConfig = ''
# hyprland config goes here
'';
};
}