21 lines
325 B
Nix
21 lines
325 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./fuzzel.nix
|
|
./hyprlock.nix
|
|
./hyprland
|
|
./waybar.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
grim
|
|
slurp
|
|
wl-clipboard
|
|
wlr-randr
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
QT_QPA_PLATFORM = "wayland";
|
|
SDL_VIDEODRIVER = "wayland";
|
|
XDG_SESSION_TYPE = "wayland";
|
|
};
|
|
}
|