This fixes inherits and library functions usage, to inherit them explicitely at top level of the file.
17 lines
274 B
Nix
17 lines
274 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
in {
|
|
config = mkIf config.local.profiles.desktop.enable {
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
|
|
environment.systemPackages = [pkgs.distrobox];
|
|
};
|
|
}
|