build(systems/apollo): init apollo config

This commit is contained in:
Mohammad Rafiq 2025-05-23 11:41:28 +08:00
parent 4f6d8cb424
commit a5de30be51
No known key found for this signature in database

View file

@ -0,0 +1,22 @@
{
lib,
...
}:
{
system = {
hostname = "apollo";
mainUser.name = "rafiq";
mainUser.publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdsZyY3gu8IGB8MzMnLdh+ClDxQQ2RYG9rkeetIKq8n";
bootloader = "systemd-boot";
};
hardware = {
platform = "intel";
drives.btrfs = {
enable = true;
drive = "";
ephemeralRoot = true;
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}