nixdots/hosts/default.nix

16 lines
327 B
Nix
Raw Normal View History

2024-02-28 22:40:50 +00:00
{self, inputs, ...}: let
inherit (inputs.nixpkgs) lib;
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:30:04 +00:00
../system
../system/options/systemd-boot.nix
../system/options/cachix.nix
../system/options/oomd.nix
2024-03-01 13:02:06 +00:00
../modules/services/ssh.nix
];
2024-02-28 18:36:12 +00:00
};
}