panacea/modules/development.nix

13 lines
227 B
Nix
Raw Normal View History

2020-05-09 18:45:10 +02:00
{ config, lib, pkgs, ... }:
{
# Improve nix-shell and direnv integration
2021-09-29 12:09:36 +02:00
environment.pathsToLink = [ "/share/nix-direnv" ];
2020-05-11 19:08:09 +02:00
# Set up podman
2021-02-20 12:04:49 +01:00
virtualisation.podman = {
enable = true;
dockerCompat = true;
2020-05-11 19:08:09 +02:00
};
2020-05-09 18:45:10 +02:00
}