Fixes nix-darwin.zeus & adds nixbox ssh key

This commit is contained in:
willemml 2023-11-11 02:21:22 -08:00
parent f336ca87b2
commit 5433877f86
Signed by: willemml
GPG key ID: C3DE5DF6198DACBD
4 changed files with 9 additions and 3 deletions

View file

@ -24,8 +24,6 @@
settings.trusted-users = ["root" "willem"];
};
programs.command-not-found.enable = false;
programs.bash.enableCompletion = true;
programs.bash.interactiveShellInit = ''
export PS1=$'\n'"\e[0mbash: \e[34;1m\w"$'\n'"\e[32m\\$\e[0m "

View file

@ -1,5 +1,9 @@
{pkgs, ...}: {
imports = [../profiles/common.nix];
imports = [
../../common/system.nix
../modules/nix/link-inputs.nix
../modules/nix/use-flake-pkgs.nix
];
nix = {
generateNixPathFromInputs = true;

View file

@ -9,6 +9,7 @@
extraGroups = ["networkmanager" "wheel" "video" "udev"];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBx1z962nl87rmOk/vw3EBSgqU/VlCqON8zTeLHQcSBp willem@zeus"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGFprwUFAmOqWlUtRkpGMAQJs6zJVesYIstXVLL3yjse willem@nixbox"
];
};
}

View file

@ -24,9 +24,12 @@
}
'';
programs.command-not-found.enable = false;
services.udev.enable = true;
services.openssh.enable = true;
services.openssh.passwordAuthentication = false;
system.stateVersion = "23.05";