tree imports all now

This commit is contained in:
Callum Leslie 2026-04-22 18:32:42 +01:00
parent e692e1ec13
commit 9b48220a2a
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
11 changed files with 258 additions and 25 deletions

7
tree/keys.nix Normal file
View file

@ -0,0 +1,7 @@
{...}: {
flake.nixosModules.keys = {lib, ...}: {
options.keys = lib.mkOption {
default = import ../lib/keys.nix;
};
};
}