stylix: drop unnecessary use of self in droid

This commit is contained in:
Matt Sturgeon 2025-05-28 18:42:59 +01:00
parent 9cb8a57eac
commit 23e3013b62
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 8 additions and 9 deletions

View file

@ -60,7 +60,7 @@
{ pkgs, ... }@args:
{
imports = [
(lib.modules.importApply ../stylix/droid inputs)
../stylix/droid
{
stylix = {
paletteGenerator =

View file

@ -1,4 +1,3 @@
inputs:
{ lib, ... }:
let
@ -6,13 +5,13 @@ let
in
{
imports = [
"${inputs.self}/stylix/fonts.nix"
"${inputs.self}/stylix/home-manager-integration.nix"
"${inputs.self}/stylix/opacity.nix"
"${inputs.self}/stylix/palette.nix"
"${inputs.self}/stylix/pixel.nix"
"${inputs.self}/stylix/target.nix"
"${inputs.self}/stylix/overlays.nix"
../fonts.nix
../home-manager-integration.nix
../opacity.nix
../palette.nix
../pixel.nix
../target.nix
../overlays.nix
] ++ autoload;
# See https://github.com/nix-community/nix-on-droid/issues/436