mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
Fixes nix-darwin.zeus & adds nixbox ssh key
This commit is contained in:
parent
f336ca87b2
commit
5433877f86
4 changed files with 9 additions and 3 deletions
|
@ -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 "
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
extraGroups = ["networkmanager" "wheel" "video" "udev"];
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBx1z962nl87rmOk/vw3EBSgqU/VlCqON8zTeLHQcSBp willem@zeus"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGFprwUFAmOqWlUtRkpGMAQJs6zJVesYIstXVLL3yjse willem@nixbox"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue