27 lines
No EOL
478 B
Nix
27 lines
No EOL
478 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.hyprland =
|
|
{ pkgs, ... }:
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = false;
|
|
xwayland.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
kitty
|
|
grim
|
|
wl-clipboard
|
|
slurp
|
|
jq
|
|
linux-wallpaperengine
|
|
];
|
|
};
|
|
|
|
flake.modules.homeManager.hyprland =
|
|
{
|
|
wayland.windowManager.hyprland.enable = true;
|
|
wayland.windowManager.hyprland.configType = "lua";
|
|
};
|
|
} |