-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
29 lines (27 loc) · 902 Bytes
/
Copy pathflake.nix
File metadata and controls
29 lines (27 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
description = "fnctl";
inputs = {
nix-filter.url = "github:numtide/nix-filter";
hardware.url = "github:nixos/nixos-hardware";
nixpkgs.url = "nixpkgs/nixos-22.05";
templates.url = "github:nixos/templates";
utils.inputs.nixpkgs.follows = "nixpkgs";
utils.url = "github:numtide/flake-utils";
};
outputs = inputs @ {
self,
nixpkgs,
...
}: rec {
apps = lib.loadAppDir ./nix/apps;
checks = lib.loadChecks ./nix/checks;
devShells = lib.loadDevShells ./nix/devShells;
formatter = lib.eachSystemMap (system: (lib.pkgsForSystem' system).alejandra);
lib = import ./nix/lib self;
nixosConfigurations = lib.loadOSConfigs ./nix/os-configs;
nixosModules = lib.loadOSModules ./nix/modules;
overlays = lib.loadOverlays ./nix/overlays;
packages = lib.loadPackages ./nix/pkgs;
templates = lib.loadTemplates ./nix/templates;
};
}