From bda1048f47175f664a3e819e6f867898eab6c624 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Thu, 16 Oct 2025 22:32:04 +0200 Subject: [PATCH] feat(dekstop): fix some input issues. --- hosts/skadi/home.nix | 1 - modules/linux/home-manager/zen-browser.nix | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/skadi/home.nix b/hosts/skadi/home.nix index 03ea8e1..3ebb4f0 100644 --- a/hosts/skadi/home.nix +++ b/hosts/skadi/home.nix @@ -8,7 +8,6 @@ inputs.nix-index-database.homeModules.nix-index inputs.nix-flatpak.homeManagerModules.nix-flatpak inputs.agenix.homeManagerModules.default - inputs.zen-browser.homeModules.beta ]; # Some info diff --git a/modules/linux/home-manager/zen-browser.nix b/modules/linux/home-manager/zen-browser.nix index b63e5c4..201a425 100644 --- a/modules/linux/home-manager/zen-browser.nix +++ b/modules/linux/home-manager/zen-browser.nix @@ -1,9 +1,13 @@ { config, + inputs, pkgs, lib, ... }: { + imports = [ + inputs.zen-browser.homeModules.beta + ]; options = { crony.zen-browser.enable = lib.mkEnableOption "Enable and setup zen browser"; };