Files
sukr/flake.nix
Timothy DeHerrera 3d237e7099 personalize
2022-11-01 17:23:22 -06:00

16 lines
383 B
Nix
Executable File

{
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")
];
};
}