Manage pre-commit hooks with devenv
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s
This commit is contained in:
parent
8268528dd2
commit
34246c71d4
5 changed files with 254 additions and 4 deletions
11
flake.nix
11
flake.nix
|
@ -28,6 +28,9 @@
|
|||
nixvim.url = "git+https://git.alejandr0angul0.dev/alejandro-angulo/nixvim-config?ref=main";
|
||||
nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
devenv.url = "github:cachix/devenv";
|
||||
devenv.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
zsh-syntax-highlighting.url = "github:zsh-users/zsh-syntax-highlighting/master";
|
||||
zsh-syntax-highlighting.flake = false;
|
||||
|
||||
|
@ -54,6 +57,14 @@
|
|||
|
||||
homes.modules = with inputs; [ catppuccin.homeModules.catppuccin ];
|
||||
|
||||
outputs-builder = channels: {
|
||||
devShells.default = inputs.devenv.lib.mkShell {
|
||||
inherit inputs;
|
||||
pkgs = channels.nixpkgs;
|
||||
modules = [ ./devenv.nix ];
|
||||
};
|
||||
};
|
||||
|
||||
deploy.nodes = {
|
||||
node = {
|
||||
hostname = "node";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue