ark/users/modules/hyprland/default.nix
2022-10-21 18:30:00 +03:00

38 lines
598 B
Nix

{
config,
pkgs,
inputs,
...
}: {
imports = [
../wayland
../swaylock
../wlsunset
../eww
../foot
../dunst
../rofi
./swayidle.nix
./config.nix
inputs.hyprland.homeManagerModules.default
];
home.sessionVariables.GDK_SCALE = "2";
home.packages = with pkgs; [
wf-recorder
xorg.xprop
inputs.hyprland-contrib.packages.${pkgs.system}.grimblast
light
playerctl
wlogout
swaybg
mpvpaper
];
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
}