1
1
mirror of https://github.com/divnix/digga.git synced 2024-11-24 05:05:26 +03:00
digga/flake.nix
2019-12-17 15:56:02 -07:00

23 lines
459 B
Nix

{
description = "A highly structured configuration database.";
epoch = 201909;
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
inputs.home.url = "github:nrdxp/home-manager/flakes";
outputs = { self, home, nixpkgs }: {
nixosConfigurations =
let
configs = import ./configurations {
inherit nixpkgs;
flake = self;
home = home.nixosModules.home-manager;
};
in
configs;
};
}