matabas/flake.nix
2023-08-09 23:05:03 +02:00

39 lines
1.2 KiB
Nix

{
description = "Matabas databas för mat";
inputs = {
nixpkgs.url = "github:NixOs/nixpkgs/nixos-23.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in rec {
packages = {
default = pkgs.hello;
};
devShells.default = pkgs.mkShell {
packages = [
packages.default
pkgs.postgresql_15_jit
( pkgs.ghc.withPackages (ps: with ps; [ scotty postgresql-typed ]) )
];
shellHook = builtins.readFile ./buildScripts/devShellHook.sh ;
};
}
) // {
nixosConfigurations.matabas-container =
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [({ pkgs, ... }: {
boot.isContainer = true;
system.configurationRevision = nixpkgs.lib.mkIf (self ? rev) self.rev;
system.stateVersion = "23.05";
environment.systemPackages = [ self.packages.x86_64-linux.default ];
})];
};
};
}