add updateSettings drv which will union nix settings configurations into the a vscode settings file

This commit is contained in:
Oren Rozen
2020-04-19 21:32:36 -05:00
parent 3d102d1c90
commit a535e7a04f
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,6 @@
with import <nixpkgs>{};
callPackage (import ./updateSettings.nix) {} {
settings = {
a = "fdsdf";
};
}