mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
18 lines
257 B
Nix
18 lines
257 B
Nix
let
|
|
moduleNames = [
|
|
"wallpaper"
|
|
"hardware"
|
|
"setup"
|
|
"server"
|
|
"input"
|
|
];
|
|
|
|
mkImports = names: builtins.listToAttrs (map
|
|
(name: {
|
|
inherit name;
|
|
value = import ./${name}.nix;
|
|
})
|
|
names);
|
|
|
|
in
|
|
mkImports moduleNames
|