style: use alejandra formatter on all nix files

This commit is contained in:
Yorick Barbanneau 2025-09-25 23:33:01 +02:00
parent d563805909
commit 0d8a394dcf
Signed by: ephase
GPG key ID: 246042E52B41FFCF
76 changed files with 1287 additions and 935 deletions

View file

@ -1,17 +1,20 @@
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.desktop.sway;
in
{
config,
pkgs,
lib,
...
}:
with lib; let
cfg = config.modules.desktop.sway;
in {
config = mkIf config.modules.desktop.sway.enable {
systemd.user.services.mako = {
Service = {
ExecStart = "${pkgs.mako}/bin/mako";
};
Install = {
After = [ "sway-session.target" ];
WantedBy = [ "sway-session.target" ];
After = ["sway-session.target"];
WantedBy = ["sway-session.target"];
};
};
services.mako = {
@ -39,10 +42,10 @@ in
border-size = 1;
default-timeout = 7000;
group-by = "app-name";
format= "%b";
format = "%b";
};
"app-name=cmus grouped" = {
format = "%b";
format = "%b";
};
};
};