adds pano alpha and fixes for gnome extensions

This commit is contained in:
2024-11-05 19:16:37 +01:00
parent ac7376f606
commit c0626c9d27
9 changed files with 131 additions and 59 deletions

View File

@ -1,4 +1,12 @@
{ ... }:
{ config, pkgs, ... }:
let
files = builtins.removeAttrs (builtins.readDir ./.) [ "default.nix" ];
# Import all other .nix files as modules
moduleFiles = builtins.map (fname: ./. + "/${fname}") (builtins.attrNames files);
in
{
imports = [ ];
# Import all the package modules
imports = moduleFiles;
}