init
This commit is contained in:
29
flake.nix
Normal file
29
flake.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
|
||||
basecamp.url = "github:plul/basecamp";
|
||||
basecamp.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ basecamp, nixpkgs, ... }:
|
||||
{
|
||||
devShells."x86_64-linux".default =
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
in
|
||||
basecamp.mkShell pkgs {
|
||||
packages = [
|
||||
(pkgs.python3.withPackages (_python-pkgs: [
|
||||
# python-pkgs.drawsvg
|
||||
# python-pkgs.ruff
|
||||
# python-pkgs.jedi-language-server
|
||||
]))
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user