48 lines
857 B
Nix
Executable File
48 lines
857 B
Nix
Executable File
{ pkgs
|
|
, ...
|
|
}:
|
|
{
|
|
time.timeZone = "America/New_York";
|
|
system.stateVersion = "26.05";
|
|
|
|
reichard = {
|
|
system = {
|
|
boot = {
|
|
enable = true;
|
|
xenGuest = true;
|
|
};
|
|
disk = {
|
|
enable = true;
|
|
diskPath = "/dev/xvda";
|
|
};
|
|
networking = {
|
|
enable = true;
|
|
useStatic = {
|
|
interface = "enX0";
|
|
address = "10.0.50.130";
|
|
defaultGateway = "10.0.50.254";
|
|
nameservers = [ "10.0.50.254" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
services = {
|
|
openssh = {
|
|
enable = true;
|
|
authorizedKeys = [
|
|
# NixOS Builder
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDF8QjeN8lpT+Mc70zwEJQqN9W/GKvTOTd32VgfNhVdN"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
# System Packages
|
|
environment.systemPackages = with pkgs; [
|
|
btop
|
|
git
|
|
tmux
|
|
vim
|
|
];
|
|
}
|