Refactor the whole configuration #1

Merged
caem merged 354 commits from refactor into master 2025-02-01 14:05:16 +01:00
2 changed files with 1 additions and 12 deletions
Showing only changes of commit a3fb727454 - Show all commits

View file

@ -3,7 +3,6 @@
let let
fs = import ./fs.nix { inherit lib; }; fs = import ./fs.nix { inherit lib; };
hosts = import ./hosts.nix { inherit lib; }; hosts = import ./hosts.nix { inherit lib; };
modules = import ./modules.nix { inherit lib; };
in in
fs // hosts // modules fs // hosts

View file

@ -1,10 +0,0 @@
{ lib }:
rec {
makeOverridable =
f: origArgs:
let
origRes = f origArgs;
in
origRes // { override = newArgs: makeOverridable f (origArgs // newArgs); };
}