diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index 3baed70..2120778 100644 --- a/flake.nix +++ b/flake.nix @@ -44,13 +44,21 @@ ./hosts/server1/configuration.nix simple-nixos-mailserver.nixosModule { - mailserver = import ./system/mail {}; + mailserver = import ./system/mail {inherit (pkgs) lib;}; } ]; }; devShells."${system}" = { default = pkgs.mkShell { - packages = with pkgs; [nil alejandra statix shellcheck ltex-ls]; + packages = with pkgs; [ + nil + alejandra + statix + shellcheck + ltex-ls + cocogitto + git-crypt + ]; }; }; }; |