diff options
Diffstat (limited to 'home/default.nix')
| -rw-r--r-- | home/default.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/home/default.nix b/home/default.nix index 0afdc7c..975e1b8 100644 --- a/home/default.nix +++ b/home/default.nix @@ -9,8 +9,14 @@ with lib; { ./path.nix ]; - options.local.workstation = with lib.types; mkOption { - type = bool; + options.local = with lib.types; { + hostname = mkOption { + type = str; + }; + + workstation = mkOption { + type = bool; + }; }; config = { @@ -30,7 +36,6 @@ with lib; { # changes in each release. stateVersion = "21.11"; - username = "ale"; homeDirectory = "/home/${config.home.username}"; sessionVariables = { |
