Init
This commit is contained in:
commit
53a27e9502
6 changed files with 179 additions and 0 deletions
36
flake.nix
Normal file
36
flake.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
||||
flake-utils = {
|
||||
url = "github:/numtide/flake-utils";
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
{
|
||||
nixpkgs,
|
||||
flake-utils,
|
||||
...
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (
|
||||
system:
|
||||
let
|
||||
overlays = [ ];
|
||||
pkgs = import nixpkgs {
|
||||
inherit system overlays;
|
||||
};
|
||||
|
||||
packages = import ./pkgs {
|
||||
inherit pkgs;
|
||||
};
|
||||
in
|
||||
with pkgs;
|
||||
{
|
||||
inherit packages;
|
||||
|
||||
devShells.default = mkShell {
|
||||
buildInputs = [ ];
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue