13 lines
237 B
Nix
13 lines
237 B
Nix
{pkgs, ...}: {
|
|
environment.defaultPackages = with pkgs; [
|
|
hyprsunset
|
|
];
|
|
|
|
programs = {
|
|
hyprland = {
|
|
enable = true;
|
|
withUWSM = true; # Universal Wayland Session Manager
|
|
xwayland.enable = true;
|
|
};
|
|
};
|
|
}
|