diff options
Diffstat (limited to 'common/variables.nix')
-rw-r--r-- | common/variables.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/variables.nix b/common/variables.nix index d8c3e42..189aaa7 100644 --- a/common/variables.nix +++ b/common/variables.nix @@ -14,6 +14,7 @@ myEmail = mkOption {type = str;}; displayScale = mkOption {type = int;}; myAutostartCommands = mkOption {type = listOf str;}; + myConfigLocation = mkOption {type = str;}; }; # Default values for this configuration @@ -27,5 +28,6 @@ myAutostartCommands = [ "fcitx5" ]; + myConfigLocation = "/home/${myUserName}/nix-conf"; }; } |