1
1
mirror of https://github.com/divnix/digga.git synced 2024-09-11 06:55:55 +03:00
digga/examples/hmOnly/flake.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
606 B
Nix
Raw Permalink Normal View History

2021-07-16 03:55:15 +03:00
{
description = "A DevOS example. And also a digga test bed.";
2022-04-21 03:16:34 +03:00
inputs = {
nixos.url = "github:nixos/nixpkgs/nixos-22.11";
2022-04-21 03:16:34 +03:00
digga.url = "github:divnix/digga";
digga.inputs.nixpkgs.follows = "nixos";
digga.inputs.home-manager.follows = "home";
home.url = "github:nix-community/home-manager/release-22.11";
2022-04-21 03:16:34 +03:00
home.inputs.nixpkgs.follows = "nixos";
};
2021-07-16 03:55:15 +03:00
2022-11-08 17:06:32 +03:00
outputs = inputs @ {
self,
nixos,
digga,
home,
}:
2021-07-16 03:55:15 +03:00
digga.lib.mkFlake {
inherit self inputs;
2022-11-08 17:06:32 +03:00
channels.nixos = {};
2021-07-16 03:55:15 +03:00
nixos.hostDefaults.channelName = "nixos";
home = ./home;
};
}