mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
9 lines
293 B
Nix
9 lines
293 B
Nix
{ lib, ... }:
|
|
let
|
|
importNames = lib.swarselsystems.readNix "modules/home/common";
|
|
sharedNames = lib.swarselsystems.readNix "modules/shared";
|
|
in
|
|
{
|
|
imports = lib.swarselsystems.mkImports importNames "modules/home/common" ++
|
|
lib.swarselsystems.mkImports sharedNames "modules/shared";
|
|
}
|