fixed missing zsh

This commit is contained in:
katvayor 2024-04-03 11:13:50 +02:00
parent 770e35644c
commit c2f5121149
2 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
drv=$(colmena eval -E "{ nodes, ... }: nodes.kat-iso.config.system.build.isoImage" --instantiate --show-trace)
nix-store --realize --add-root "installer-iso-image" --indirect $drv
nom-build $drv

View File

@ -2,14 +2,17 @@
{ config, lib, pkgs, mods, ... }:
{
programs.zsh.enable = true;
users.users.root.shell = pkgs.zsh;
users.users.root = {
shell = pkgs.zsh;
} // lib.attrsets.optionalAttrs ssh {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAA16foz+XzwKwyIR4wFgNIAE3Y7AfXyEsUZFVVz8Rie catvayor@katvayor"
];
};
home-manager.users.root = {
home.stateVersion = "23.11";
imports = with mods.home; [ neovim zsh ];
};
} // lib.attrsets.optionalAttrs ssh {
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAA16foz+XzwKwyIR4wFgNIAE3Y7AfXyEsUZFVVz8Rie catvayor@katvayor"
];
services.openssh.enable = true;
}