mirror of https://gitlab.crans.org/nounous/nixos
29 lines
424 B
Nix
29 lines
424 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
../../../modules/services/matrix.nix
|
|
../../../modules/services/synapse-admin.nix
|
|
];
|
|
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
networking.hostName = "neo";
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = 41;
|
|
srv = {
|
|
enable = true;
|
|
ipv4 = "185.230.79.5";
|
|
};
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|