diff options
| author | seth <[email protected]> | 2024-06-30 11:05:48 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-06-30 11:23:48 -0400 |
| commit | e7bbf4dd3af908670e803c7fa385caca59d55b70 (patch) | |
| tree | 8c505c39e3613c1141ddb158c293d116e7484575 /modules/nixos | |
| parent | 031ce0be2a6e755317c809235dcc200b0c6c3512 (diff) | |
nixos/containers: don't overuse `with pkgs;`
Diffstat (limited to 'modules/nixos')
| -rw-r--r-- | modules/nixos/traits/containers.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/nixos/traits/containers.nix b/modules/nixos/traits/containers.nix index d13c658..1399dbf 100644 --- a/modules/nixos/traits/containers.nix +++ b/modules/nixos/traits/containers.nix @@ -1,7 +1,6 @@ { config, lib, - options, pkgs, ... }: @@ -20,7 +19,7 @@ in virtualisation = { podman = { enable = true; - extraPackages = with pkgs; [ podman-compose ]; + extraPackages = [ pkgs.podman-compose ]; autoPrune.enable = true; }; |
