10 lines
207 B
Nix
10 lines
207 B
Nix
{
|
|
pkgs, ...
|
|
}: {
|
|
home.packages = with pkgs; [wlr-randr nwg-displays];
|
|
|
|
wayland.windowManager.hyprland.settings.source = [
|
|
"~/.config/hypr/monitors.conf"
|
|
"~/.config/hypr/workspaces.conf"
|
|
];
|
|
}
|