I am going insane why is there still an infinite recursion
parent
b510522ae5
commit
eaf8054ef3
|
@ -21,6 +21,7 @@
|
||||||
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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, inputs, ... }:
|
{ pkgs, inputs, nix-colors, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.home-manage.enable = true;
|
programs.home-manage.enable = true;
|
||||||
|
@ -14,6 +14,8 @@
|
||||||
../programs/obs.nix
|
../programs/obs.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
colorScheme = import ../theming/colorScheme.nix;
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "23.05";
|
stateVersion = "23.05";
|
||||||
username = "hertog";
|
username = "hertog";
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
{ config }:
|
{ config }:
|
||||||
let
|
|
||||||
config.colorScheme = import ../../theming/colorScheme.nix;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
{ config }:
|
{ config }:
|
||||||
let
|
|
||||||
config.colorScheme = import ../../theming/colorScheme.nix;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
programs.wofi = {
|
programs.wofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in New Issue