From 43e6317a351123b88d0ab7bcf5de2d9ce2240dd9 Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 21 Oct 2025 22:03:49 +0300 Subject: [PATCH] formatting --- modules/nixos/options.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/nixos/options.nix b/modules/nixos/options.nix index 77bac9c..5cdcf79 100644 --- a/modules/nixos/options.nix +++ b/modules/nixos/options.nix @@ -27,11 +27,12 @@ # Users users = lib.mkOption { type = lib.types.listOf lib.types.str; - default = - [ "osbm" ] - ++ lib.optionals - (config.osbmModules.machineType == "desktop" || config.osbmModules.machineType == "laptop") - [ "bayram" ]; + default = [ + "osbm" + ] + ++ lib.optionals ( + config.osbmModules.machineType == "desktop" || config.osbmModules.machineType == "laptop" + ) [ "bayram" ]; description = "List of users to create. `osbm` is my main user, and `bayram` is for my family (only on desktop/laptop)."; };