forked from emily/nixfiles
17 lines
401 B
Nix
17 lines
401 B
Nix
{ config, pkgs, lib, modulesPath, ... }:
|
|
|
|
with lib; {
|
|
imports = [
|
|
./config/common/networking.nix
|
|
./config/common/openssh.nix
|
|
./config/hosts/web02/configuration.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
];
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA/+iN407+HsfHbbC3tfdA8Yf4TZ08qXQMb4tb/SDAs+ emily@card"
|
|
];
|
|
}
|