1
Fork 0
satellite/home/adrielus/features/desktop/hyprland/default.nix
Matei Adriel 1cd3d7a903
Hyprland
2023-05-24 03:17:09 +02:00

12 lines
298 B
Nix

{ pkgs, inputs, ... }: {
imports = [ ../common/wayland.nix ];
home.packages = [ inputs.hyprland-contrib.packages.${pkgs.system}.grimblast ];
wayland.windowManager.hyprland = {
enable = true;
recommendedEnvironment = true;
extraConfig = builtins.readFile ./hyprland.conf;
};
}