2023-11-20 01:31:41 -08:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
wayland.windowManager.hyprland.enable = true;
|
|
|
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
|
|
|
${builtins.readFile ./default.conf}
|
|
|
|
|
${builtins.readFile ./keybinds.conf}
|
|
|
|
|
'';
|
2023-11-20 02:22:10 -08:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
socat # For hyprland scripts
|
|
|
|
|
swww # Wallpaper engine
|
|
|
|
|
wlr-randr # Xrandr for wayland
|
|
|
|
|
];
|
2023-11-20 01:31:41 -08:00
|
|
|
}
|