Upgrade the NixOS `stateVersion` from 25.05 to 25.11 in all system configuration files and update all nix channel URLs to the 25.11 releases. Adjust Home Manager and terminal module configurations accordingly, clean up duplicated SSH keys, and update LLaMA server command lines. Minor housekeeping changes to package definitions and other configuration files are also included.
48 lines
857 B
Nix
Executable File
48 lines
857 B
Nix
Executable File
{ pkgs
|
|
, ...
|
|
}:
|
|
{
|
|
time.timeZone = "America/New_York";
|
|
system.stateVersion = "25.11";
|
|
|
|
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
|
|
];
|
|
}
|