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