1

Home: Add "paths" module

This commit is contained in:
2025-03-16 14:41:39 +01:00
parent e79cd33ecd
commit 750de30cf6
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{
config,
nixosConfig,
lib,
mylib,
pkgs,
...
}: let
inherit (config) paths;
in {
options.paths = import ./options.nix {inherit lib mylib;};
config = lib.mkIf paths.enable {};
}