10 lines
219 B
Nix
10 lines
219 B
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
wayland.windowManager.hyprland.enable = true;
|
||
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
||
|
|
${builtins.readFile ./default.conf}
|
||
|
|
${builtins.readFile ./keybinds.conf}
|
||
|
|
'';
|
||
|
|
}
|