From 4dea3443b2653288ee3cedf1903de20dfe65ce78 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Sat, 28 Mar 2026 11:37:49 -0500 Subject: [PATCH] fixes sync --- for_new_sovran_pros/flake_consume.nix | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 for_new_sovran_pros/flake_consume.nix diff --git a/for_new_sovran_pros/flake_consume.nix b/for_new_sovran_pros/flake_consume.nix new file mode 100755 index 0000000..416e872 --- /dev/null +++ b/for_new_sovran_pros/flake_consume.nix @@ -0,0 +1,30 @@ +{ + 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 { + + modules = [ + + { nixpkgs.hostPlatform = "x86_64-linux"; } + + ./hardware-configuration.nix + + ./custom.nix + + Sovran_Systems.nixosModules.Sovran_SystemsOS + + ]; + + }; + + }; + +}