21 lines
354 B
Nix
21 lines
354 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
wayland = {
|
|
windowManager = {
|
|
sway = {
|
|
enable = true;
|
|
};
|
|
hyprland = {
|
|
enable = true;
|
|
xwayland = {
|
|
enable = true;
|
|
hidpi = true;
|
|
};
|
|
nvidiaPatches = true;
|
|
extraConfig = builtins.readFile ./config/hypr/hyprland.conf;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|