stylix/droid: fix import droid modules (#1823)

Link: https://github.com/nix-community/stylix/pull/1823

Reviewed-by: awwpotato <awwpotato@voidq.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Reviewed-by: Daniel Thwaites <danth@danth.me>
This commit is contained in:
Skryta Istota 2025-08-19 22:10:49 +02:00 committed by GitHub
parent 7bd8d9c5b1
commit e01d56cf5c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 5 deletions

View file

@ -4,6 +4,8 @@ let
in
{
imports = [
./fonts.nix
./palette.nix
../fonts.nix
../home-manager-integration.nix
../opacity.nix

View file

@ -23,7 +23,5 @@ let
terminalFont = mkFont config.stylix.fonts.monospace;
in
{
imports = [ ../fonts.nix ];
config.terminal.font = lib.mkIf config.stylix.enable terminalFont;
}

View file

@ -1,8 +1,5 @@
args:
{ config, lib, ... }:
{
imports = [ (lib.modules.importApply ../palette.nix args) ];
config = lib.mkIf config.stylix.enable {
environment.etc = config.stylix.generated.fileTree;
};