chore: nix fmt

Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
Harald Hoyer 2025-01-16 16:25:12 +01:00
parent 904b1e8cfe
commit adb0d8bdde
3 changed files with 11 additions and 10 deletions

View file

@ -7,14 +7,14 @@
with lib;
with lib.metacfg;
let
common = import ../../common.nix {};
common = import ../../common.nix { };
cfg = config.metacfg.user;
is-linux = pkgs.stdenv.isLinux;
is-darwin = pkgs.stdenv.isDarwin;
in
{
options.metacfg.user = with types; {
options.metacfg.user = with types; {
name = mkOpt types.str "harald" "The user account.";
fullName = mkOpt types.str "Harald Hoyer" "The full name of the user.";