nix/entry.nix
2025-08-12 15:47:26 +10:00

25 lines
424 B
Nix

let
create = import ./lib/create.nix;
in
{
nixosConfigurations = create.systems {
quiver = {
username = "bolt";
system = "x86_64-linux";
imports = [
./common
./graphical
./hosts/quiver
];
};
adrift = {
username = "plank";
system = "x86_64-linux";
imports = [
./common
./graphical
./hosts/adrift
];
};
};
}