Large module update

This commit is contained in:
Filippo Berto 2021-06-01 22:19:24 +02:00
parent 492ae9d92a
commit a61bfe3c50
18 changed files with 463 additions and 87 deletions

10
modules/zoxide.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
let
zoxideCmd = "zoxide";
in {
programs.zoxide = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
}