personalize

This commit is contained in:
Timothy DeHerrera
2022-11-01 17:23:22 -06:00
parent 14079f0511
commit 3d237e7099
14 changed files with 6758 additions and 75 deletions

15
flake.nix Executable file
View File

@@ -0,0 +1,15 @@
{
inputs.std.url = "github:divnix/std/nixpkgs-config";
inputs.nixpkgs.follows = "std/nixpkgs";
outputs = inputs @ {std, ...}:
std.growOn {
inherit inputs;
nixpkgsConfig.allowUnfree = true;
systems = ["x86_64-linux"];
cellsFrom = ./nix;
cellBlocks = [
(std.installables "packages")
(std.devshells "devshells")
];
};
}