fix: move podman to system packages

This commit is contained in:
winston 2023-06-06 21:30:50 +02:00
parent 4ddeac5573
commit dbe7b06cd2
Signed by: winston
GPG key ID: 3786770EDBC2B481
4 changed files with 19 additions and 3 deletions

View file

@ -42,9 +42,6 @@ in {
gh
gocryptfs
mosh
podman
podman-compose
qemu
]
++ lib.optionals isLinux [
_1password-gui

View file

@ -1,4 +1,7 @@
{pkgs, ...}: {
imports = [
./shared
];
nixpkgs.config.allowUnfree = true;
nix = {
gc.automatic = true;

View file

@ -0,0 +1,5 @@
{
imports = [
./podman.nix
];
}

View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
environment = {
systemPackages = with pkgs; [
podman
podman-compose
podman-tui
qemu
];
pathsToLink = ["/share/qemu"];
};
}