feat(servers): add baldur, the immortal

This commit is contained in:
CronyAkatsuki 2025-05-07 16:41:42 +02:00
parent 79420d9b7c
commit 8c4e9f6641
9 changed files with 107 additions and 1 deletions
hosts/baldur

View file

@ -0,0 +1,27 @@
{
modulesPath,
lib,
pkgs,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix")
./disk-config.nix
];
networking.hostName = "baldur";
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
};
environment.systemPackages = map lib.lowPrio [
pkgs.curl
pkgs.neovim
pkgs.gitMinimal
];
system.stateVersion = "24.05";
}