I am going insane why is there still an infinite recursion

Main
Johannes Hendrik Gerard van der Weide 2024-02-21 14:31:15 +01:00
parent b510522ae5
commit eaf8054ef3
5 changed files with 6 additions and 9 deletions

View File

@ -20,7 +20,8 @@
self, self,
nixos-hardware, nixos-hardware,
nixpkgs, nixpkgs,
nix-flatpak, nix-flatpak,
nix-colors,
nixvim, nixvim,
home-manager, home-manager,
... ...
@ -56,6 +57,7 @@
]; ];
specialArgs = { specialArgs = {
inputs = inputs; inputs = inputs;
inherit nix-colors;
inherit system; inherit system;
}; };
}; };

View File

@ -1,4 +1,4 @@
{ pkgs, inputs, ... }: { pkgs, inputs, nix-colors, ... }:
{ {
programs.home-manage.enable = true; programs.home-manage.enable = true;
@ -13,6 +13,8 @@
../programs/firefox.nix ../programs/firefox.nix
../programs/obs.nix ../programs/obs.nix
]; ];
colorScheme = import ../theming/colorScheme.nix;
home = { home = {
stateVersion = "23.05"; stateVersion = "23.05";

View File

@ -1,6 +1,5 @@
{ pkgs, config }: { pkgs, config }:
let let
config.colorScheme = import ../../theming/colorScheme.nix;
modifierKey = config.wayland.windowManager.sway.config.modifier; modifierKey = config.wayland.windowManager.sway.config.modifier;
in in
{ {

View File

@ -1,7 +1,4 @@
{ config }: { config }:
let
config.colorScheme = import ../../theming/colorScheme.nix;
in
{ {
programs.waybar = { programs.waybar = {
enable = true; enable = true;

View File

@ -1,7 +1,4 @@
{ config }: { config }:
let
config.colorScheme = import ../../theming/colorScheme.nix;
in
{ {
programs.wofi = { programs.wofi = {
enable = true; enable = true;