Sovran_SystemsOS/For_NEW_Sovran_Pros_Upload/flake.nix

22 lines
442 B
Nix
Raw Normal View History

2023-06-01 05:47:05 -07:00
{
2023-06-01 09:56:06 -07:00
description = "Sovran_SystemsOS for the Sovran Pro from Sovran Systems";
2023-06-01 05:47:05 -07:00
inputs = {
2023-06-01 09:56:06 -07:00
Sovran_Systems.url = "git+https://git.sovransystems.com/Sovran_Systems/Sovran_SystemsOS";
2023-06-01 05:47:05 -07:00
};
outputs = { self, Sovran_Systems, ... }@inputs: {
2023-06-01 09:56:06 -07:00
2023-06-01 05:47:05 -07:00
nixosConfigurations."nixos" = Sovran_Systems.inputs.nixpkgs.lib.nixosSystem {
2023-06-01 09:56:06 -07:00
2023-06-01 05:47:05 -07:00
system = "x86_64-linux";
2023-06-01 09:56:06 -07:00
2023-06-03 14:30:01 -07:00
modules = [ Sovran_Systems.nixosModules.Sovran_SystemsOS ];
2023-06-01 09:56:06 -07:00
2023-06-01 05:47:05 -07:00
};
2023-06-01 09:56:06 -07:00
2023-06-01 05:47:05 -07:00
};
2023-06-01 09:56:06 -07:00
2023-06-01 05:47:05 -07:00
}