2023-05-24 03:17:09 +02:00
|
|
|
{ pkgs, inputs, ... }: {
|
2023-05-28 02:00:10 +02:00
|
|
|
imports = [ ../default.nix ];
|
2023-05-24 03:17:09 +02:00
|
|
|
|
|
|
|
home.packages = [ inputs.hyprland-contrib.packages.${pkgs.system}.grimblast ];
|
|
|
|
|
|
|
|
wayland.windowManager.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
recommendedEnvironment = true;
|
|
|
|
extraConfig = builtins.readFile ./hyprland.conf;
|
|
|
|
};
|
|
|
|
}
|