I am going insane why is there still an infinite recursion
parent
b510522ae5
commit
eaf8054ef3
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{ pkgs, config }:
|
||||
let
|
||||
config.colorScheme = import ../../theming/colorScheme.nix;
|
||||
modifierKey = config.wayland.windowManager.sway.config.modifier;
|
||||
in
|
||||
{
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
{ config }:
|
||||
let
|
||||
config.colorScheme = import ../../theming/colorScheme.nix;
|
||||
in
|
||||
{
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
{ config }:
|
||||
let
|
||||
config.colorScheme = import ../../theming/colorScheme.nix;
|
||||
in
|
||||
{
|
||||
programs.wofi = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in New Issue