refactor(treewide): format with alejandra

This commit is contained in:
ooks-io 2024-07-29 15:00:38 +12:00
parent 7fefb94400
commit 61cef505da
216 changed files with 5995 additions and 3969 deletions

View file

@ -1,30 +1,26 @@
{ lib, ... }:
let
{lib, ...}: let
inherit (lib) mkOption mkEnableOption types;
inherit (types) nullOr enum;
in
{
in {
options.ooknet.wayland = {
enable = mkEnableOption "";
compositor = mkOption {
type = nullOr (enum [ "hyprland" ]);
type = nullOr (enum ["hyprland"]);
};
launcher = mkOption {
type = nullOr (enum [ "rofi" "tofi" ]);
type = nullOr (enum ["rofi" "tofi"]);
default = null;
};
locker = mkOption {
type = nullOr (enum [ "hyprlock" "swaylock" ]);
type = nullOr (enum ["hyprlock" "swaylock"]);
default = null;
};
notification = mkOption {
type = nullOr (enum [ "mako" ]);
type = nullOr (enum ["mako"]);
default = null;
};
bar = mkOption {
type = nullOr (enum [ "waybar" ]);
type = nullOr (enum ["waybar"]);
default = null;
};
};