fix(home/optional):add default to desktop packages

This commit is contained in:
madmin 2024-08-09 11:09:20 +02:00
parent f7754dece3
commit 17ef59c359
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{ config, lib, pkgs, outputs, configLib, ... }:
{
imports = (configLib.scanPaths ./.)
++ (builtins.attrValues outputs.homeManagerModules);
home.packages = builtins.attrValues {
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
};
}