initial add

This commit is contained in:
2023-06-01 05:47:05 -07:00
parent 8c5ed0c982
commit 355e35b9f6
13 changed files with 1076 additions and 2 deletions

28
flake.nix Normal file
View File

@ -0,0 +1,28 @@
{
description = "The Ultimate Sovran Pro Configuration from Sovran Systems";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nix-bitcoin.url = "github:fort-nix/nix-bitcoin/release";
};
outputs = { self, nixpkgs, nix-bitcoin, ... }:
{
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system ="x86_64-linux";
};
nixosModules.Sovran_Pro = { pkgs, ... }: {
imports = [
./modules/modules.nix
nix-bitcoin.nixosModules.default
];
};
};
}