format all code with alejandra

This commit is contained in:
Antoine Martin 2022-04-10 11:54:58 +02:00
parent fa0cda2673
commit 4f0d45e4d5
89 changed files with 1605 additions and 1298 deletions

View file

@ -1,16 +1,20 @@
{ config, lib, pkgs, options, ... }:
let
inherit (lib)
{
config,
lib,
pkgs,
options,
...
}: let
inherit
(lib)
mkEnableOption
mkIf
optionalAttrs
;
;
cfg = config.my.services.pipewire;
my = config.my;
in
{
in {
options.my.services.pipewire = {
enable = mkEnableOption "Pipewire sound backend";
};
@ -37,6 +41,6 @@ in
# FIXME: a shame pactl isn't available by itself, eventually this should be
# replaced by pw-cli or a wrapper, I guess?
environment.systemPackages = [ pkgs.pulseaudio ];
environment.systemPackages = [pkgs.pulseaudio];
});
}