mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
e7d55a6790
Note that specializations increase the build time and therefore shouldn't be used unless you're actually using those specializations. For example, a normal Hyprland build of 30 seconds becomes 1 minute and 30 seconds with the GNOME and Plasma specializations enabled. As an alternative, you can use multiple nixosConfigurations and only build GNOME and/or Plsama on demand, then run those desktop environments as virtual machines inside of Hyprland, which lets you use both (or even all three) at the same time.
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
|
|
./overlays
|
|
];
|
|
}
|