diff options
author | Yves Fischer <yvesf+git@xapek.org> | 2021-05-14 00:21:13 +0200 |
---|---|---|
committer | Yves Fischer <yvesf+git@xapek.org> | 2021-05-14 00:28:31 +0200 |
commit | 67cfcb14483e5d98f868b195a8417b7f2b6e410a (patch) | |
tree | aeac273f6ef6870cecb03914d05bbe9dbca4e3a4 | |
parent | 1689c8bae86c8f6d347794d9ae0554cfe456f7d7 (diff) | |
download | smtp-forward-67cfcb14483e5d98f868b195a8417b7f2b6e410a.tar.gz smtp-forward-67cfcb14483e5d98f868b195a8417b7f2b6e410a.zip |
-rw-r--r-- | flake.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..1eb9df5 --- /dev/null +++ b/flake.nix @@ -0,0 +1,9 @@ +{ + inputs.nixpkgs.url = "nixpkgs/nixos-20.09"; + outputs = { self, nixpkgs }: + with import nixpkgs { system = "x86_64-linux"; }; + { + defaultPackage.x86_64-linux = callPackage ./. {}; + nixosModule = { config, ... }: { imports = [ ./module.nix ]; }; + }; +} |