Add basic machine config for kaalut, a new mail vm

This commit is contained in:
Gonne 2025-02-25 15:10:15 +01:00
parent 79333272bd
commit 5b52a93ee0
5 changed files with 114 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{config, ...}: {
imports = [
./hardware-configuration.nix
../../roles
../../roles/vm.nix
../../modules/vmNetwork.nix
];
# System configuration here
networking.hostName = "kaalut";
vmNetwork.ipv4 = "192.168.0.17";
system.stateVersion = "24.05";
sops.secrets = {
backupKey = {
sopsFile = ./backupKey.yaml;
owner = "root";
group = "root";
mode = "0400";
};
};
}