1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-24 00:21:47 +03:00
digga/examples/groupByConfig/flake.nix
2022-04-05 11:56:20 -07:00

30 lines
627 B
Nix

{
description = "A DevOS example. And also a digga test bed.";
inputs =
{
# Track channels with commits tested and built by hydra
nixos.url = "github:nixos/nixpkgs/nixos-21.11";
digga = {
url = "github:divnix/digga";
inputs.nixpkgs.follows = "nixos";
};
home.url = "github:nix-community/home-manager";
home.inputs.nixpkgs.follows = "nixos";
};
outputs = inputs @ { self, nixos, digga, home }:
digga.lib.mkFlake {
inherit self inputs;
channels.nixos = { };
nixos = ./nixos;
home = ./home;
devshell = ./devshell;
};
}