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,
nixos-hardware,
nixpkgs,
nix-flatpak,
nix-flatpak,
nix-colors,
nixvim,
home-manager,
...
@ -56,6 +57,7 @@
];
specialArgs = {
inputs = inputs;
inherit nix-colors;
inherit system;
};
};

View File

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

View File

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

View File

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

View File

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