alejandra: fmt

This commit is contained in:
hand7s 2025-04-27 12:47:02 +03:00
parent 4132420034
commit 510e39c245
No known key found for this signature in database
199 changed files with 1030 additions and 1438 deletions

View file

@ -2,25 +2,26 @@
osConfig,
lib,
...
}:{
}: {
home = {
gui = {
enable = lib.mkIf (
osConfig.networking.hostName == "s0mePC-nix" || osConfig.networking.hostName == "s0melapt0p-nix"
) true;
)
true;
sessionType = if (
osConfig.networking.hostName == "s0mePC-nix"
) then (
"Hyprland"
) else if (
osConfig.networking.hostName == "s0melapt0p-nix"
) then (
"Sway"
) else (
"None"
);
sessionType =
if
(
osConfig.networking.hostName == "s0mePC-nix"
)
then "Hyprland"
else if
(
osConfig.networking.hostName == "s0melapt0p-nix"
)
then "Sway"
else "None";
};
};
}