improve zen config

This commit is contained in:
Chris Kruining 2025-09-03 16:45:20 +02:00
parent 7758806282
commit 6379b5e2de
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
2 changed files with 7 additions and 1 deletions

View file

@ -93,8 +93,11 @@
channels-config = { channels-config = {
allowUnfree = true; allowUnfree = true;
permittedInsecurePackages = [ permittedInsecurePackages = [
# Due to *arr stack
"dotnet-sdk-6.0.428" "dotnet-sdk-6.0.428"
"aspnetcore-runtime-6.0.36" "aspnetcore-runtime-6.0.36"
# I think this is because of zen
"qtwebengine-5.15.19" "qtwebengine-5.15.19"
]; ];
}; };
@ -107,7 +110,6 @@
homes.modules = with inputs; [ homes.modules = with inputs; [
stylix.homeModules.stylix stylix.homeModules.stylix
zen-browser.homeModules.default
plasma-manager.homeModules.plasma-manager plasma-manager.homeModules.plasma-manager
]; ];
}; };

View file

@ -5,6 +5,10 @@ let
cfg = config.${namespace}.application.zen; cfg = config.${namespace}.application.zen;
in in
{ {
imports = [
inputs.zen-browser.homeModules.default
];
options.${namespace}.application.zen = { options.${namespace}.application.zen = {
enable = mkEnableOption "enable zen"; enable = mkEnableOption "enable zen";
}; };