caem
1ea937f884
- Added library for common functions - Moved machines/ to hosts/ - Automise adding new hosts to the flake
10 lines
183 B
Nix
10 lines
183 B
Nix
{ lib }:
|
|
|
|
# todo: Write a function to import all of these automatically
|
|
|
|
let
|
|
fs = import ./fs.nix { inherit lib; };
|
|
hosts = import ./hosts.nix { inherit lib; };
|
|
in
|
|
fs // hosts
|
|
|