1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-14 11:57:52 +00:00

add flake.nix

This commit is contained in:
Jörg Thalheim 2020-07-06 08:44:11 +01:00
parent 8ccd9ba269
commit 59b9bab04d
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

18
flake.nix Normal file
View file

@ -0,0 +1,18 @@
{
description = "Integrates sops into nixos";
outputs = { self, nixpkgs }: let
systems = [
"x86_64-linux"
"i686-linux"
"x86_64-darwin"
"aarch64-linux"
"armv6l-linux"
"armv7l-linux"
];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
in {
nixosModules.sops = import ./modules/sops;
packages = forAllSystems (system: nixpkgs.legacyPackages.${system}.callPackage ./default.nix {});
defaultPackage = forAllSystems (system: self.packages.${system}.sops-init-gpg-key);
};
}