stylix: drop unnecessary use of self in nixos
This commit is contained in:
parent
9fb268f3a6
commit
950483a5d0
2 changed files with 13 additions and 18 deletions
|
|
@ -10,7 +10,7 @@
|
|||
{ pkgs, ... }@args:
|
||||
{
|
||||
imports = [
|
||||
(lib.modules.importApply ../stylix/nixos inputs)
|
||||
../stylix/nixos
|
||||
{
|
||||
stylix = {
|
||||
inherit inputs;
|
||||
|
|
|
|||
|
|
@ -1,31 +1,26 @@
|
|||
inputs:
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
|
||||
# Imported modules which define new options must use an absolute path based
|
||||
# on ${inputs.self}, otherwise those options will not appear in the generated
|
||||
# documentation.
|
||||
|
||||
let
|
||||
autoload = import ../autoload.nix { inherit lib; } "nixos";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
"${inputs.self}/stylix/cursor.nix"
|
||||
"${inputs.self}/stylix/fonts.nix"
|
||||
"${inputs.self}/stylix/home-manager-integration.nix"
|
||||
"${inputs.self}/stylix/nixos/cursor.nix"
|
||||
"${inputs.self}/stylix/nixos/fonts.nix"
|
||||
"${inputs.self}/stylix/nixos/palette.nix"
|
||||
"${inputs.self}/stylix/opacity.nix"
|
||||
"${inputs.self}/stylix/palette.nix"
|
||||
"${inputs.self}/stylix/pixel.nix"
|
||||
"${inputs.self}/stylix/target.nix"
|
||||
"${inputs.self}/stylix/release.nix"
|
||||
"${inputs.self}/stylix/overlays.nix"
|
||||
./cursor.nix
|
||||
./fonts.nix
|
||||
./palette.nix
|
||||
../cursor.nix
|
||||
../fonts.nix
|
||||
../home-manager-integration.nix
|
||||
../opacity.nix
|
||||
../palette.nix
|
||||
../pixel.nix
|
||||
../target.nix
|
||||
../release.nix
|
||||
../overlays.nix
|
||||
] ++ autoload;
|
||||
config.warnings =
|
||||
lib.mkIf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue