2023-11-28 08:19:49 +01:00
|
|
|
{ config, pkgs, lib, modulesPath, ... }:
|
|
|
|
|
|
|
|
with lib; {
|
|
|
|
imports = [
|
2023-12-06 10:21:07 +01:00
|
|
|
./config/common/networking.nix
|
|
|
|
./config/common/openssh.nix
|
|
|
|
./config/hosts/web02/configuration.nix
|
2023-11-28 08:19:49 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
vim
|
|
|
|
];
|
|
|
|
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA/+iN407+HsfHbbC3tfdA8Yf4TZ08qXQMb4tb/SDAs+ emily@card"
|
|
|
|
];
|
|
|
|
}
|