26 lines
617 B
Nix
26 lines
617 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disko.nix
|
|
./home.nix
|
|
../../modules/nixos/networking/ssh.nix
|
|
../../modules/nixos/users/tulg.nix
|
|
../../modules/servers/common.nix
|
|
../../modules/servers/per-host/overlord/nixarr.nix
|
|
../../modules/servers/per-host/overlord/share.nix
|
|
];
|
|
programs.tmux = {
|
|
enable = true;
|
|
clock24 = true;
|
|
extraConfig = '' # used for less common options, intelligently combines if defined in multiple places.
|
|
...
|
|
'';
|
|
};
|
|
networking.hostName = "overlord";
|
|
system.stateVersion = "25.05";
|
|
}
|