2021-10-27 09:05:52 +00:00
{
description = " F l a k e b a s i c s d e s c r i b e d u s i n g t h e m o d u l e s y s t e m " ;
inputs = {
2024-08-01 23:35:38 +00:00
nixpkgs-lib . url = " h t t p s : / / g i t h u b . c o m / N i x O S / n i x p k g s / a r c h i v e / a 5 d 3 9 4 1 7 6 e 6 4 a b 2 9 c 8 5 2 d 0 3 3 4 6 c 1 f c 9 b 0 b 7 d 3 3 e b . t a r . g z " ; # 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58 /lib from nixos-unstable
2021-10-27 09:05:52 +00:00
} ;
2024-08-29 11:36:47 +00:00
outputs = inputs @ { nixpkgs-lib , . . . }:
2024-08-29 11:34:48 +00:00
let
lib = import ./lib.nix {
inherit ( nixpkgs-lib ) lib ;
# Extra info for version check message
revInfo =
if nixpkgs-lib ? rev
then " ( n i x p k g s - l i b . r e v : ${ nixpkgs-lib . rev } ) "
else " " ;
2022-05-11 21:05:53 +00:00
} ;
2024-08-29 11:34:48 +00:00
templates = {
default = {
path = ./template/default ;
description = ''
A minimal flake using flake-parts .
'' ;
} ;
multi-module = {
path = ./template/multi-module ;
description = ''
A minimal flake using flake-parts .
'' ;
} ;
unfree = {
path = ./template/unfree ;
description = ''
A minimal flake using flake-parts importing nixpkgs with the unfree option .
'' ;
} ;
package = {
path = ./template/package ;
description = ''
A flake with a simple package :
- Nixpkgs
- callPackage
- src with fileset
- a check with runCommand
'' ;
} ;
2023-03-25 06:38:31 +00:00
} ;
2024-08-29 11:34:48 +00:00
flakeModules = {
easyOverlay = ./extras/easyOverlay.nix ;
flakeModules = ./extras/flakeModules.nix ;
2024-08-29 11:37:23 +00:00
partitions = ./extras/partitions.nix ;
2024-06-30 10:55:15 +00:00
} ;
2024-08-29 11:34:48 +00:00
in
2024-08-29 11:36:47 +00:00
lib . mkFlake { inherit inputs ; } {
systems = [ ] ;
flake = {
inherit lib templates flakeModules ;
} ;
2021-11-21 14:28:25 +00:00
} ;
2021-10-27 09:05:52 +00:00
}