mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 19:47:47 +00:00
Fix infinite recursion somewhat
This commit is contained in:
parent
9a78668ebd
commit
cb3e57b901
2 changed files with 3 additions and 3 deletions
|
@ -43,7 +43,7 @@
|
|||
ulib = rec {
|
||||
recursiveUpdate3 = x: y: z: lib.recursiveUpdate x (lib.recursiveUpdate y z);
|
||||
|
||||
imports = paths: {
|
||||
importAll = paths: {
|
||||
imports = paths;
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ recursiveUpdate3, systemConfiguration, homeConfiguration, imports, ... }: recursiveUpdate3
|
||||
{ recursiveUpdate3, systemConfiguration, homeConfiguration, importAll, ... }: recursiveUpdate3
|
||||
|
||||
(systemConfiguration {
|
||||
boot.loader = {
|
||||
|
@ -14,7 +14,7 @@
|
|||
home.stateVersion = "23.05";
|
||||
})
|
||||
|
||||
(imports [
|
||||
(importAll [
|
||||
./bat
|
||||
./blueman
|
||||
./discord
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue