diff options
| author | seth <[email protected]> | 2023-07-15 03:00:28 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-07-15 04:15:21 -0400 |
| commit | f0ed286c00c8369a9c99986c7574b60954120d94 (patch) | |
| tree | 76f843ca66811d1c6771ebbd0f17022fbfd803cd /hosts/p-body/default.nix | |
| parent | f7ff62b10c67c7ee381e3a64fa9e1b383010c084 (diff) | |
host/atlas+p-body: stop using openssh
Diffstat (limited to 'hosts/p-body/default.nix')
| -rw-r--r-- | hosts/p-body/default.nix | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/hosts/p-body/default.nix b/hosts/p-body/default.nix index ea03d42..47a77c3 100644 --- a/hosts/p-body/default.nix +++ b/hosts/p-body/default.nix @@ -45,22 +45,13 @@ } ]; - system.stateVersion = "22.11"; + system.stateVersion = "23.11"; - users.users = let - openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOeEbjzzzwf9Qyl0JorokhraNYG4M2hovyAAaA6jPpM7 seth@glados" - ]; - in { - root = {inherit openssh;}; - - p-body = { - extraGroups = ["wheel"]; - isNormalUser = true; - shell = pkgs.bash; - passwordFile = config.age.secrets.userPassword.path; - inherit openssh; - }; + users.users.p-body = { + extraGroups = ["wheel"]; + isNormalUser = true; + shell = pkgs.bash; + passwordFile = config.age.secrets.userPassword.path; }; zramSwap.enable = true; |
