24 lines
524 B
Nix
24 lines
524 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
swww
|
|
# hyprpicker
|
|
# wofi
|
|
];
|
|
systemd.user.targets.hyprland-session.Unit.Wants = [ "xdg-desktop-autostart.target" ];
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
xwayland = {
|
|
enable = true;
|
|
# hidpi = true;
|
|
};
|
|
# enableNvidiaPatches = false;
|
|
# systemd.enable = true;
|
|
};
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
source = ~/.config/hypr/monitors.conf
|
|
source = ~/.config/hypr/workspaces.conf
|
|
'';
|
|
|
|
}
|