From 844df06137ccdd38f4f6690c6d8a8e1ba297f2ea Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 18 May 2023 20:28:51 -0400 Subject: [PATCH] Revert "nix: Simplify" Looks like this silently broke home-manager, so reverting for now. --- flake.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index c90ec984..dfd53673 100644 --- a/flake.nix +++ b/flake.nix @@ -21,13 +21,14 @@ }; }; - outputs = inputs: { - nixosConfigurations.nixos = inputs.nixpkgs.lib.nixosSystem { + outputs = { self, nixpkgs, home-manager, hyprland, stylix, ... }@attrs: { + nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = attrs; modules = [ - inputs.home-manager.nixosModules.home-manager - inputs.hyprland.nixosModules.default - inputs.stylix.nixosModules.stylix + home-manager.nixosModules.home-manager + hyprland.nixosModules.default + stylix.nixosModules.stylix ./applications ./common ./desktop