mirror of
https://github.com/divnix/digga.git
synced 2024-12-23 16:11:51 +03:00
137 lines
3.5 KiB
Nix
137 lines
3.5 KiB
Nix
{
|
|
description = "DevOS environment configuriguration library.";
|
|
|
|
inputs =
|
|
{
|
|
nixpkgs.url = "github:nixos/nixpkgs";
|
|
deploy = {
|
|
url = "github:serokell/deploy-rs";
|
|
inputs = {
|
|
nixpkgs.follows = "nixpkgs";
|
|
utils.follows = "utils";
|
|
};
|
|
};
|
|
devshell.url = "github:numtide/devshell";
|
|
utils.url = "github:gytis-ivaskevicius/flake-utils-plus/staging";
|
|
nixlib.url = "github:divnix/nixpkgs.lib";
|
|
|
|
# We only use the nixosModules output which only needs nixpkgs lib
|
|
# TODO: don't pull another 'nixpkgs' when only nixpkgs lib is needed
|
|
nixos-generators = {
|
|
url = "github:nix-community/nixos-generators";
|
|
inputs = {
|
|
nixpkgs.follows = "nixpkgs";
|
|
utils.follows = "utils";
|
|
};
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
{ self
|
|
, nixlib
|
|
, nixpkgs
|
|
, deploy
|
|
, devshell
|
|
, utils
|
|
, nixos-generators
|
|
, ...
|
|
}@inputs:
|
|
let
|
|
|
|
lib = nixlib.lib.makeExtensible (self:
|
|
let combinedLib = nixlib.lib // self; in
|
|
with self;
|
|
utils.lib // {
|
|
tests = import ./src/tests.nix { lib = combinedLib; };
|
|
|
|
modules = import ./src/modules.nix {
|
|
lib = combinedLib;
|
|
inherit nixos-generators;
|
|
};
|
|
|
|
importers = import ./src/importers.nix {
|
|
lib = combinedLib;
|
|
};
|
|
|
|
generators = import ./src/generators.nix {
|
|
lib = combinedLib;
|
|
inherit deploy;
|
|
};
|
|
|
|
mkFlake = {
|
|
__functor = import ./src/mkFlake { inherit deploy devshell; lib = combinedLib; };
|
|
evalArgs = import ./src/mkFlake/evalArgs.nix {
|
|
lib = combinedLib;
|
|
inherit devshell;
|
|
};
|
|
};
|
|
|
|
inherit (attrs) mapFilterAttrs genAttrs' concatAttrs;
|
|
inherit (lists) unifyOverlays;
|
|
inherit (strings) rgxToString;
|
|
inherit (importers) profileMap flattenTree rakeLeaves mkProfileAttrs maybeImportDevshellModule;
|
|
inherit (generators) mkSuites mkDeployNodes mkHomeConfigurations;
|
|
}
|
|
);
|
|
|
|
# Unofficial Flakes Roadmap - Polyfills
|
|
# .. see: https://demo.hedgedoc.org/s/_W6Ve03GK#
|
|
# .. also: <repo-root>/ufr-polyfills
|
|
|
|
# Super Stupid Flakes (ssf) / System As an Input - Style:
|
|
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin"];
|
|
ufrContract = import ./ufr-polyfills/ufrContract.nix;
|
|
|
|
# Dependency Groups - Style
|
|
checksInputs = { inherit nixpkgs lib; nixlib = nixlib.lib; };
|
|
jobsInputs = { inherit nixpkgs; digga = self; };
|
|
devShellInputs = { inherit nixpkgs devshell; };
|
|
|
|
# .. we hope you like this style.
|
|
# .. it's adopted by a growing number of projects.
|
|
# Please consider adopting it if you want to help to improve flakes.
|
|
|
|
in
|
|
|
|
{
|
|
# what you came for ...
|
|
lib = let
|
|
|
|
fupLib = with utils.lib; {
|
|
|
|
inherit
|
|
systemFlake
|
|
exporters
|
|
;
|
|
|
|
};
|
|
|
|
diggaLib = with lib; {
|
|
|
|
inherit
|
|
modules
|
|
importers
|
|
;
|
|
|
|
inherit (lib)
|
|
mkFlake
|
|
mkDeployNodes
|
|
mkHomeConfigurations
|
|
;
|
|
|
|
inherit (lib.tests)
|
|
mkTest
|
|
;
|
|
|
|
};
|
|
|
|
in fupLib // diggaLib;
|
|
|
|
# digga-local use
|
|
jobs = ufrContract supportedSystems ./jobs jobsInputs;
|
|
checks = ufrContract supportedSystems ./checks checksInputs;
|
|
devShell = ufrContract supportedSystems ./shell.nix devShellInputs;
|
|
};
|
|
|
|
}
|