2023-06-21 21:22:10 -07:00
|
|
|
{
|
|
|
|
description = "Sovran_SystemsOS for the Sovran Pro from Sovran Systems";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
|
|
|
|
Sovran_Systems.url = "git+https://git.sovransystems.com/Sovran_Systems/Sovran_SystemsOS";
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, Sovran_Systems, ... }@inputs: {
|
|
|
|
|
|
|
|
nixosConfigurations."nixos" = Sovran_Systems.inputs.nixpkgs.lib.nixosSystem {
|
|
|
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
2023-07-28 19:43:21 -07:00
|
|
|
modules = [
|
|
|
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
2023-08-10 17:09:16 -07:00
|
|
|
./custom.nix
|
|
|
|
|
2023-07-28 19:43:21 -07:00
|
|
|
Sovran_Systems.nixosModules.Sovran_SystemsOS
|
|
|
|
|
|
|
|
];
|
2023-06-21 21:22:10 -07:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|