13 lines
235 B
Nix
13 lines
235 B
Nix
{osconfig, ...}: {
|
|
imports = [
|
|
./key-bind.nix
|
|
./theme.nix
|
|
./exec.nix
|
|
./window-rules.nix
|
|
./input.nix
|
|
];
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
|
monitorv2 = osconfig.device.wm.hyprland.monitors;
|
|
};
|
|
}
|