1
0
Fork 0

Move podman to separate file

This commit is contained in:
Daniel Kempkens 2022-06-27 21:38:03 +02:00
parent 64f9c0a25a
commit 70b599ef92
2 changed files with 15 additions and 2 deletions

View file

@ -17,6 +17,8 @@
./programs/jq.nix
./programs/podman.nix
./programs/scripts.nix
./programs/ssh.nix
@ -48,9 +50,7 @@
nix-prefetch
nvd
parallel
podman
q
qemu
ripgrep
rtmpdump
streamlink

13
programs/podman.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, config, ... }:
{
home.packages = [
pkgs.podman
pkgs.qemu
];
xdg.configFile."containers/containers.conf.d/nix.conf".text = ''
[engine]
helper_binaries_dir = ["${config.home.profileDirectory}/bin"]
'';
}