15 lines
238 B
Nix
15 lines
238 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;
|
|
};
|
|
}
|
|
|