From 7f1bcaa4b05ff425252ab3a75f9e47474bb0efc9 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 25 May 2025 15:30:13 -0700 Subject: [PATCH] feat: migrate options/my --- .../nixos/options/my/default.nix => modules/options/my.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename snowflake/modules/nixos/options/my/default.nix => modules/options/my.nix (93%) diff --git a/snowflake/modules/nixos/options/my/default.nix b/modules/options/my.nix similarity index 93% rename from snowflake/modules/nixos/options/my/default.nix rename to modules/options/my.nix index 6cfaeff..d5060a9 100644 --- a/snowflake/modules/nixos/options/my/default.nix +++ b/modules/options/my.nix @@ -6,7 +6,7 @@ options.marleyos.my = rec { name = lib.mkOption { type = with lib.types; str; - default = config.snowfallorg.user.name or "marley"; + default = "marley"; description = "Your username, for use as your login name."; };