13 lines
227 B
Nix
13 lines
227 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Improve nix-shell and direnv integration
|
|
environment.pathsToLink = [ "/share/nix-direnv" ];
|
|
|
|
# Set up podman
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
}
|