1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-23 16:11:51 +03:00
digga/examples/hmOnly/flake.nix
2022-02-23 15:23:14 -08:00

27 lines
589 B
Nix

{
description = "A DevOS example. And also a digga test bed.";
inputs =
{
nixos.url = "nixpkgs/release-21.05";
digga.url = "path:../../";
digga.inputs.nixpkgs.follows = "nixos";
digga.inputs.home-manager.follows = "home";
home.url = "github:nix-community/home-manager/release-21.05";
home.inputs.nixpkgs.follows = "nixos";
};
outputs = inputs @ { self, nixos, digga, home }:
digga.lib.mkFlake {
inherit self inputs;
channels.nixos = { };
nixos.hostDefaults.channelName = "nixos";
home = ./home;
};
}