Fix missing semicolon and import variables in profile.nix
diff --git a/src/scripts/personal/profile.nix b/src/scripts/personal/profile.nix
index c759cf6..6d3bc3d 100644
--- a/src/scripts/personal/profile.nix
+++ b/src/scripts/personal/profile.nix
@@ -1,5 +1,7 @@
-{ lib, ... }: {
- lib.writeText."/home/${variables}/.profile" = ''
+{ lib, ... }: let
+ variables = import ../../common/variables.nix;
+in {
+ lib.writeText."/home/${variables.username}/.profile" = ''
- ''
+ '';
}
\ No newline at end of file