Files
nixcfg/users/daniel/configs/desktop/hyprland/default.nix

27 lines
422 B
Nix

{
config,
lib,
pkgs,
hostname,
...
}: {
home.packages = with pkgs; [
swaybg
];
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland;
xwayland = {
enable = true;
hidpi = true;
};
nvidiaPatches = true;
extraConfig = (builtins.readFile ./${hostname}.conf) + (builtins.readFile ./hyprland.conf);
};
services.mako = {
enable = true;
};
}