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