containers: Fix cursor by inheriting overlays

Previously the old phinger-cursors package was being used without the
overlay. This fixes that and ensures that all packages have their
appropriate overlays.
This commit is contained in:
Donovan Glover 2024-06-02 23:41:32 -04:00
parent 6bb9350f7a
commit 5e5d7c0468
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,3 +1,8 @@
{ nix-config, ... }:
let
inherit (builtins) attrValues;
in
{
imports = [
../modules/shell.nix
@ -15,6 +20,8 @@
../home/yazi.nix
];
nixpkgs.overlays = attrValues nix-config.overlays;
modules = {
desktop.container = true;
system.noRoot = true;