Sovran_SystemsOS_Light/flake.nix

35 lines
603 B
Nix
Raw Normal View History

2023-11-26 21:51:10 -08:00
{
description = "The Ultimate Sovran_SystemsOS_Light Configuration for the Sovran Pro from Sovran Systems";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-10-24 09:50:00 -07:00
bisq1.url = "github:emmanuelrosa/bisq-for-nixos";
2023-11-26 21:51:10 -08:00
};
2024-10-24 09:50:00 -07:00
outputs = { self, nixpkgs, bisq1, ... }:
2023-11-26 21:51:10 -08:00
{
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system ="x86_64-linux";
};
nixosModules.Sovran_SystemsOS_Light = { pkgs, ... }: {
imports = [
./configuration.nix
];
2024-10-24 09:50:00 -07:00
environment.systemPackages = with pkgs; [
bisq1.packages.x86_64-linux.bisq-desktop
];
2023-11-26 21:51:10 -08:00
};
};
2024-10-24 09:50:00 -07:00
}