Initial commit

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-05-31 19:58:18 +05:30
parent f8a6ef954d
commit a3e3f198b8
No known key found for this signature in database
GPG Key ID: 366D7BBAD1031E80
5 changed files with 15 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
result
result-*

7
default.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> { } }:
{
lib = import ./lib { inherit pkgs; }; # functions
modules = import ./modules; # NixOS modules
overlays = import ./overlays; # nixpkgs overlays
}

4
lib/default.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs }:
with pkgs.lib;
{ }

1
modules/default.nix Normal file
View File

@ -0,0 +1 @@
{ }

1
overlays/default.nix Normal file
View File

@ -0,0 +1 @@
{ }