23 lines
502 B
Nix
23 lines
502 B
Nix
{config, ...}: let
|
|
hm = config.flake.homeModules;
|
|
in {
|
|
flake.homeModules.leylaConfiguration = {...}: {
|
|
imports = [
|
|
hm.leylaBaseConfiguration
|
|
hm.leylaDconf
|
|
hm.leylaI18n
|
|
hm.leylaImpermanence
|
|
hm.leylaPackages
|
|
hm.leylaDirenv
|
|
hm.leylaGit
|
|
hm.leylaMakemkv
|
|
hm.leylaOpenssh
|
|
hm.leylaFirefox
|
|
hm.leylaFirefoxProfile
|
|
hm.leylaFirefoxBookmarks
|
|
hm.leylaFirefoxHarden
|
|
hm.leylaVscode
|
|
hm.leylaVscodeUserWords
|
|
];
|
|
};
|
|
}
|