53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ ../mako ];
|
|
|
|
xdg.portal =
|
|
let
|
|
hyprland = config.wayland.windowManager.hyprland.package;
|
|
xdph = pkgs.xdg-desktop-portal-hyprland.override { inherit hyprland; };
|
|
in
|
|
{
|
|
extraPortals = [ xdph ];
|
|
configPackages = [ hyprland ];
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
grimblast
|
|
slurp
|
|
hyprpicker
|
|
swaybg
|
|
tofi
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
MOZ_ENABLE_WAYLAND = 1;
|
|
NIXOS_OZONE_WL = 1;
|
|
SDL_VIDEODRIVER = "wayland";
|
|
QT_QPA_PLATFORM = "wayland";
|
|
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
|
LIBSEAT_BACKEND = "logind";
|
|
};
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
package = pkgs.hyprland;
|
|
xwayland.enable = true;
|
|
extraConfig = ''
|
|
${builtins.readFile ./hyprland.conf}
|
|
'';
|
|
systemd = {
|
|
enable = true;
|
|
extraCommands = [
|
|
"systemctl --user stop graphical-session.target"
|
|
"systemctl --user start hyprland-session.target"
|
|
];
|
|
};
|
|
};
|
|
}
|