ark/users/modules/hyprland/default.nix

37 lines
585 B
Nix
Raw Normal View History

2022-08-11 05:44:58 +03:00
{
2022-09-12 03:32:23 +03:00
config,
2022-08-11 05:44:58 +03:00
pkgs,
inputs,
...
}: {
imports = [
../wayland
2022-09-12 02:24:41 +03:00
../swaylock
../wlsunset
2022-09-14 15:35:52 +03:00
../eww
2022-10-04 02:08:44 +03:00
../foot
../dunst
../rofi
./swayidle.nix
./config.nix
2022-08-11 05:44:58 +03:00
inputs.hyprland.homeManagerModules.default
];
2022-10-04 02:08:44 +03:00
home.sessionVariables.GDK_SCALE = "2";
2022-09-12 02:24:41 +03:00
home.packages = with pkgs; [
wf-recorder
xorg.xprop
inputs.hyprland-contrib.packages.${pkgs.system}.grimblast
light
playerctl
wlogout
2022-09-27 11:47:43 +03:00
swaybg
2022-09-12 02:24:41 +03:00
];
2022-08-11 05:44:58 +03:00
wayland.windowManager.hyprland = {
enable = true;
2022-09-02 16:16:07 +03:00
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
2022-08-11 05:44:58 +03:00
};
2022-07-01 04:45:26 +03:00
}