mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
feat: vars in _module.args instead of options
This commit is contained in:
parent
c3060b2be9
commit
c5c09b0358
11 changed files with 437 additions and 439 deletions
|
|
@ -1,9 +1,9 @@
|
|||
{ self, lib, ... }:
|
||||
{ lib, ... }:
|
||||
let
|
||||
importNames = lib.swarselsystems.readNix "modules/home/common";
|
||||
sharedNames = lib.swarselsystems.readNix "modules/shared";
|
||||
in
|
||||
{
|
||||
imports = lib.swarselsystems.mkImports importNames "modules/home/common" ++ [
|
||||
"${self}/modules/shared/sharedsetup.nix"
|
||||
];
|
||||
imports = lib.swarselsystems.mkImports importNames "modules/home/common" ++
|
||||
lib.swarselsystems.mkImports sharedNames "modules/shared";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue