mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 15:29:07 +01:00
7 lines
221 B
Nix
7 lines
221 B
Nix
{ self, ... }:
|
|
{
|
|
flake = {
|
|
nixosModules.default.imports = self.lib.listNixFilesRecursively "${self}/modules/system";
|
|
homeModules.default.imports = self.lib.listNixFilesRecursively "${self}/modules/home";
|
|
};
|
|
}
|