31 lines
718 B
Nix
31 lines
718 B
Nix
{
|
|
# inputs = {
|
|
# nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
# unf = {
|
|
# url = "git+https://git.atagen.co/atagen/unf";
|
|
# inputs.nixpkgs.follows = "nixpkgs";
|
|
# };
|
|
# };
|
|
|
|
outputs =
|
|
|
|
{
|
|
self,
|
|
# nixpkgs,
|
|
# unf,
|
|
}:
|
|
{
|
|
# uncomment for doc gen
|
|
# packages.x86_64-linux.docs =
|
|
# let
|
|
# pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
# in
|
|
# pkgs.callPackage unf.lib.pak-chooie {
|
|
# inherit self;
|
|
# projectName = "arbys";
|
|
# newPath = "https://git.atagen.co/atagen/arbys";
|
|
# modules = [ self.nixosModules.arbys ];
|
|
# };
|
|
nixosModules.arbys = import ./default.nix;
|
|
};
|
|
}
|