37 lines
630 B
Nix
37 lines
630 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./hypridle.nix
|
|
./hyprlock.nix
|
|
./mako.nix
|
|
./portal.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
catppuccin-cursors.mochaDark
|
|
grim
|
|
slurp
|
|
wl-clipboard
|
|
pamixer
|
|
brightnessctl
|
|
playerctl
|
|
];
|
|
|
|
systemd.user.targets.hyprland-session.Unit.Wants = [ "xdg-desktop-autostart.target" ];
|
|
|
|
wayland.windowManager.hyprland = {
|
|
package = null;
|
|
enable = true;
|
|
|
|
xwayland.enable = true;
|
|
|
|
systemd = {
|
|
enable = true;
|
|
variables = [ "--all" ];
|
|
enableXdgAutostart = false;
|
|
};
|
|
|
|
extraConfig = builtins.readFile ./hyprland.lua;
|
|
};
|
|
}
|