Update configuration to work with updated blog static flake
This commit is contained in:
@@ -1,18 +1,17 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
blog.url = "git+https://dev.danilafe.com/DanilaFe/blog-static-flake";
|
||||
blog.url = "git+https://dev.danilafe.com/Nix-Configs/blog-static-flake.git";
|
||||
};
|
||||
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 builders; };
|
||||
modules = [ ./configuration.nix blog.nixosModule ];
|
||||
inherit system;
|
||||
specialArgs = { inherit system; blog = blog.lib."${system}"; };
|
||||
modules = [ ./configuration.nix ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user