Some playground bits for trying restructuring

This commit is contained in:
Gene Liverman 2024-12-04 06:58:43 -05:00
parent 16f492663d
commit 537dbf0b82
6 changed files with 293 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ inputs, ... }: {
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [ "olm-3.2.16" "electron-27.3.11" ];
};
overlays = [ inputs.nixpkgs-terraform.overlays.default ];
};
}