Move podman to separate file
This commit is contained in:
parent
64f9c0a25a
commit
70b599ef92
2 changed files with 15 additions and 2 deletions
4
home.nix
4
home.nix
|
@ -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
13
programs/podman.nix
Normal 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"]
|
||||
'';
|
||||
}
|
Loading…
Reference in a new issue