19 lines
268 B
Nix
19 lines
268 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./autostart
|
||
|
./hotkeys
|
||
|
./inputs
|
||
|
./outputs
|
||
|
./plugins
|
||
|
./programs
|
||
|
./rules
|
||
|
./theme
|
||
|
];
|
||
|
|
||
|
wayland.windowManager.hyprland = {
|
||
|
enable = true;
|
||
|
plugins = with pkgs.hyprlandPlugins; [ hy3 ];
|
||
|
};
|
||
|
}
|