mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 07:58:30 +01:00
5674d3ed81
Now that I have more experience with nix, I know how to write an expression that automatically outputs all the overlays in the repository, as well as automatically import them inside the nixos configuration.
14 lines
201 B
Nix
14 lines
201 B
Nix
{ home-manager, stylix, ... }:
|
|
|
|
{
|
|
imports = [
|
|
home-manager.nixosModules.home-manager
|
|
stylix.nixosModules.stylix
|
|
./containers
|
|
./hardware
|
|
./home
|
|
./modules
|
|
./packages
|
|
];
|
|
}
|