diff --git a/justfile b/justfile index 5b4ce61..5a10a11 100644 --- a/justfile +++ b/justfile @@ -25,6 +25,10 @@ rebuild-post: rebuild: rebuild-pre scripts/system-flake-rebuild.sh +# Rebuild for tests config without adding to bootloader +rebuild-test: rebuild-pre + scripts/system-flake-test-rebuild.sh + # Requires sops to be running and you must have reboot after initial rebuild rebuild-full: rebuild-pre && rebuild-post scripts/system-flake-rebuild.sh diff --git a/lib/default.nix b/lib/default.nix deleted file mode 100644 index 9f98b7a..0000000 --- a/lib/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ lib, ... }: -{ - # use path relative to the root of the project - relativeToRoot = lib.path.append ../.; - scanPaths = path: - builtins.map - (f: (path + "/${f}")) - (builtins.attrNames - (lib.attrsets.filterAttrs - ( - path: _type: - (_type == "directory") # include directories - || ( - # FIXME this barfs when child directories don't contain a default.nix - # example: - # error: getting status of '/nix/store/mx31x8530b758ap48vbg20qzcakrbc8 (see hosts/common/core/services/default.nix)a-source/hosts/common/core/services/default.nix': No such file or directory - # I created a blank default.nix in hosts/common/core/services to work around - (path != "default.nix") # ignore default.nix - && (lib.strings.hasSuffix ".nix" path) # include .nix files - ) - ) - (builtins.readDir path))); -}