Add odyssey machine

This commit is contained in:
2023-05-07 22:51:12 +01:00
parent cd65b5495e
commit a42642b7cb
4 changed files with 163 additions and 0 deletions

View File

@ -59,6 +59,15 @@
];
specialArgs = { inherit lib inputs; };
};
odyssey = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
inputs.home-manager.nixosModules.home-manager
(import ./modules)
./hosts/odyssey
];
specialArgs = { inherit lib inputs; };
};
};
};
}