mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-26 11:02:18 +00:00
10 lines
190 B
Nix
10 lines
190 B
Nix
|
{ config, inputs, pkgs, ... }: {
|
||
|
wayland.windowManager.hyprland = {
|
||
|
enable = true;
|
||
|
systemdIntegration = true;
|
||
|
extraConfig = ''
|
||
|
# hyprland config goes here
|
||
|
'';
|
||
|
};
|
||
|
}
|