1
Fork 0

feat: initial config

This commit is contained in:
Matei Adriel 2020-04-08 19:36:58 +03:00
commit df5ce78519
16 changed files with 412 additions and 0 deletions

1
modules/dev/default.nix Normal file
View file

@ -0,0 +1 @@
{ ... }: { imports = [ ./nix.nix ]; }

3
modules/dev/nix.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ nixfmt niv cached-nix-shell ];
}