nixdots/hosts/default.nix

18 lines
329 B
Nix
Raw Normal View History

2024-02-28 22:40:50 +00:00
{self, inputs, ...}: let
inherit (inputs.nixpkgs) lib;
2024-03-21 21:33:38 +00:00
# A list of shared modules that ALL systems need
shared = [
../system
../options
];
2024-02-28 22:40:50 +00:00
in {
vboxnix = lib.nixosSystem {
system = "x86_64-linux";
2024-03-19 07:30:04 +00:00
modules = [
2024-03-01 13:02:06 +00:00
./vbox_nix
2024-03-19 07:43:22 +00:00
inputs.home-manager.nixosModules.home-manager
2024-03-21 21:33:38 +00:00
] ++ shared;
2024-02-28 18:36:12 +00:00
};
}