Compare commits
No commits in common. "651806c0e4f26a70346fbd98fb064202e0ebfa70" and "ec1afc4fe066cac42c4be101826f84a18467b363" have entirely different histories.
651806c0e4
...
ec1afc4fe0
|
@ -1,6 +1,5 @@
|
||||||
# TODO: vim-plug and Mason supports laziness. Probably worth it to explore
|
# TODO: vim-plug and Mason supports laziness. Probably worth it to explore
|
||||||
# incremental dependencies based on the project
|
# incremental dependencies based on the project
|
||||||
# TODO: just install these things, then symlink to mason's bin directory
|
|
||||||
#
|
#
|
||||||
# One thing to consider, though, /nix/store of `nix-shell` or `nix-develop`
|
# One thing to consider, though, /nix/store of `nix-shell` or `nix-develop`
|
||||||
# might be different from `home-manager`'s
|
# might be different from `home-manager`'s
|
||||||
|
@ -45,9 +44,6 @@ let
|
||||||
pkgs.zk # Zettelkasten (limited support)
|
pkgs.zk # Zettelkasten (limited support)
|
||||||
pkgs.fd # Required by a Telescope plugin (?)
|
pkgs.fd # Required by a Telescope plugin (?)
|
||||||
pkgs.stdenv.cc.cc.lib
|
pkgs.stdenv.cc.cc.lib
|
||||||
pkgs.rnix-lsp # doesn't work, Mason just installs it using cargo
|
|
||||||
pkgs.rust4cargo
|
|
||||||
|
|
||||||
|
|
||||||
# Language-specific stuffs
|
# Language-specific stuffs
|
||||||
pkgs.sumneko-lua-language-server
|
pkgs.sumneko-lua-language-server
|
||||||
|
|
|
@ -16,8 +16,4 @@
|
||||||
path = ./ts/turborepo;
|
path = ./ts/turborepo;
|
||||||
description = "Typescript monorepo with tsconfig, eslint, but with minimal framework attached";
|
description = "Typescript monorepo with tsconfig, eslint, but with minimal framework attached";
|
||||||
};
|
};
|
||||||
py-poetry = {
|
|
||||||
path = ./py-poetry;
|
|
||||||
description = "Python repository with poetry & poetry2nix";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
(import
|
|
||||||
(
|
|
||||||
fetchTarball {
|
|
||||||
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
|
|
||||||
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
{
|
|
||||||
src = ./.;
|
|
||||||
}).defaultNix
|
|
|
@ -1,24 +0,0 @@
|
||||||
{
|
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs }:
|
|
||||||
let
|
|
||||||
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
|
|
||||||
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
|
||||||
pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system});
|
|
||||||
in
|
|
||||||
{
|
|
||||||
packages = forAllSystems (system: {
|
|
||||||
default = pkgs.${system}.poetry2nix.mkPoetryApplication { projectDir = self; };
|
|
||||||
});
|
|
||||||
|
|
||||||
devShells = forAllSystems (system: {
|
|
||||||
default = pkgs.${system}.mkShellNoCC {
|
|
||||||
packages = with pkgs.${system}; [
|
|
||||||
(poetry2nix.mkPoetryEnv { projectDir = self; })
|
|
||||||
poetry
|
|
||||||
];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
(import
|
|
||||||
(
|
|
||||||
fetchTarball {
|
|
||||||
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
|
|
||||||
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
{
|
|
||||||
src = ./.;
|
|
||||||
}).shellNix
|
|
Loading…
Reference in New Issue