diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-08 14:14:12 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-08 14:14:12 +0200 |
commit | 35b2d418540f398875ea338db1e29dbc1c381a69 (patch) | |
tree | 68c040bfc684a4edf6c3cdc2f552fe6f42d0ab8e /devenv.nix | |
parent | 8953c93b60e31357a60112f8f707a1bb6cff0572 (diff) | |
parent | ecaf5df80adb914875ff926410e9226d72f8fa05 (diff) | |
download | nixos-configuration-feature-email-msmtp.tar.gz nixos-configuration-feature-email-msmtp.tar.bz2 nixos-configuration-feature-email-msmtp.zip |
Merge branch 'main' into feature-email-msmtpfeature-email-msmtp
Diffstat (limited to 'devenv.nix')
-rw-r--r-- | devenv.nix | 16 |
1 files changed, 4 insertions, 12 deletions
@@ -1,21 +1,15 @@ -{ - pkgs, - lib, - config, - inputs, - ... -}: { +{ pkgs, lib, config, inputs, ... }: { # https://devenv.sh/basics/ env.GREET = "devenv"; cachix.enable = false; # https://devenv.sh/packages/ - packages = [pkgs.git]; + packages = [ pkgs.git ]; # https://devenv.sh/languages/ # languages.rust.enable = true; languages.nix.enable = true; pre-commit.hooks = { - alejandra.enable = true; + nixpkgs-fmt.enable = true; shellcheck.enable = true; commitizen.enable = true; }; @@ -38,9 +32,7 @@ # https://devenv.sh/tests/ enterTest = - /* - shell - */ + # shell '' echo "Running tests" git --version | grep --color=auto "${pkgs.git.version}" |