forked from Shinonome/omarchy-nix
fba993c589
* Set nix official formatter for the flake * format the entire project
15 lines
254 B
Nix
15 lines
254 B
Nix
inputs:
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ ./hyprland/configuration.nix ];
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
};
|
|
services.hyprpolkitagent.enable = true;
|
|
}
|