blob: 7a8a7e998cf5a856c4b0d7dec7a7026ce8372f1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
description = "Quentin Aristote's personal information.";
inputs = {
my-nixpkgs.url = "github:qaristote/my-nixpkgs";
nixpkgs = {};
};
outputs = {
flake-parts,
my-nixpkgs,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
imports = builtins.attrValues {inherit (my-nixpkgs.flakeModules) personal;};
flake.lib.formatWith = attrs: import ./default.nix attrs;
perSystem = {pkgs, ...}: {packages.src = pkgs.callPackage ./src.nix {};};
};
}
|