oizys/flake.nix

31 lines
850 B
Nix
Raw Normal View History

2024-01-23 11:51:13 -06:00
{
2024-01-28 11:00:05 -06:00
description = "nix begat oizys";
2024-01-23 11:51:13 -06:00
2024-02-19 10:56:25 -06:00
inputs.inputs.url = "path:./inputs";
2024-01-31 14:47:55 -06:00
2024-02-19 10:54:03 -06:00
# nixConfig = {
# extra-substituters = [
# "https://hyprland.cachix.org"
# "https://nixpkgs-wayland.cachix.org"
# "https://daylin.cachix.org"
# ];
# extra-trusted-public-keys = [
# "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
# "nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA="
# "daylin.cachix.org-1:fLdSnbhKjtOVea6H9KqXeir+PyhO+sDSPhEW66ClE/k="
# ];
# };
#
outputs = {inputs, ...}: let
2024-02-19 10:54:37 -06:00
lib = import ./lib {
nixpkgs = inputs.inputs.nixpkgs;
inputs = inputs;
};
2024-02-06 09:51:21 -06:00
inherit (lib) findModules buildHosts buildOizys;
2024-01-23 11:51:13 -06:00
in {
2024-01-24 14:12:52 -06:00
nixosModules = findModules ./modules;
2024-02-06 09:51:21 -06:00
nixosConfigurations = buildHosts {};
2024-01-28 11:00:05 -06:00
packages = buildOizys {};
2024-01-23 11:51:13 -06:00
};
}