Update to use the new blog flake

This commit is contained in:
2021-10-23 08:00:32 +00:00
parent 126235a023
commit a314c048fa
5 changed files with 60 additions and 10 deletions

View File

@@ -6,11 +6,12 @@
outputs = { self, nixpkgs, blog }:
let
system = "x86_64-linux";
builders = blog.buildersFor system;
in
{
nixosConfigurations.nixos-droplet-v2 = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit system; blogPkgs = blog.packages."${system}"; };
specialArgs = { inherit system builders; };
modules = [ ./configuration.nix blog.nixosModule ];
};
};