From ef783dbc21fc57feb0d39b8f8df4f5c0d0c3b7d4 Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Sat, 18 May 2024 17:09:59 -0400 Subject: [PATCH] Options Was In the Wrong Section --- modules/common/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/common/default.nix b/modules/common/default.nix index fa7a26d..6afd94a 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -1,16 +1,16 @@ { config, lib, pkgs, ...}: { + options = { + user = lib.mkOption { + type = lib.types.str; + description = "Primary user of the system"; + }; + }; config = let stateVersion = "23.11"; in { - options = { - user = lib.mkOption { - type = lib.types.str; - description = "Primary user of the system"; - }; - }; environment.systemPackages = with pkgs; [ git vim