initial flake structure

This commit is contained in:
Dennis Frieberg 2023-06-12 08:34:47 +02:00
parent 1e08f75773
commit 22736986f6
Signed by: nerf
GPG key ID: 1EC6F5573876CC80
5 changed files with 190 additions and 0 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "Description for the project";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixos-mailserver = {
url = "git+https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git";
inputs = {
flake-compat.follows = "";
nixpkgs.follows = "";
};
};
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } (import ./flake-module.nix);
}