rename
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
userOptions = config: {
|
||||
openssh.authorizedKeys.keyFiles = lib.optionals config.ssh [ ./personal_keys ];
|
||||
extraGroups = lib.optionals config.root [ "wheel" ];
|
||||
shell = lib.mkIf config.shell pkgs.zsh;
|
||||
shell = lib.mkIf config.enableShell pkgs.zsh;
|
||||
};
|
||||
|
||||
mkhomeManagerModules = config: [
|
||||
@@ -27,7 +27,7 @@
|
||||
user = config.user;
|
||||
stateVersion = config.stateVersion;
|
||||
profile = config.profile;
|
||||
shell = config.shell;
|
||||
shell = config.enableShell;
|
||||
ssh = config.ssh;
|
||||
_1password = config._1password;
|
||||
}
|
||||
@@ -74,7 +74,7 @@
|
||||
extraConfig = "Defaults timestamp_timeout=1440";
|
||||
};
|
||||
|
||||
programs.zsh.enable = lib.mkIf config.shell true;
|
||||
programs.zsh.enable = lib.mkIf config.enableShell true;
|
||||
|
||||
home-manager = {
|
||||
useUserPackages = true;
|
||||
|
||||
Reference in New Issue
Block a user