nix/nixos/default.nix

50 lines
879 B
Nix
Raw Normal View History

2024-02-28 09:31:58 -06:00
{
base = {
system = "x86_64-linux";
modules = [./base.nix];
};
# workstation
2024-02-28 09:31:58 -06:00
dragon = {
system = "x86_64-linux";
modules = [./dragon.nix];
};
# primary laptop
2024-02-28 09:31:58 -06:00
foxtrot = {
system = "x86_64-linux";
modules = [./foxtrot.nix];
};
# entertainment convertible laptop
thablet = {
system = "x86_64-linux";
modules = [./thablet.nix];
};
# thinkpad backup laptop
thinker = {
2024-02-28 09:31:58 -06:00
system = "x86_64-linux";
modules = [./thinker.nix];
2024-02-28 09:31:58 -06:00
};
# TODO: stabilize these machines on nixpkgs-stable
# owned offsite backup
2024-02-28 09:31:58 -06:00
rascal = {
system = "x86_64-linux";
modules = [./rascal.nix];
};
# TODO: deploy this to the actual router
# home gateway
2024-02-28 09:31:58 -06:00
router = {
system = "x86_64-linux";
modules = [./router.nix];
};
2024-02-29 09:02:36 -06:00
# htpifour = {
# system = "aarch64-linux";
# modules = [./htpifour.nix];
# };
2024-02-28 09:31:58 -06:00
}