diff --git a/flake.nix b/flake.nix index bc4aaae..f193c2d 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ outputs = { self, nixpkgs, - }: let + } @ inputs: let supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system}); @@ -42,6 +42,6 @@ # Home Manager Module homeManagerModules.default = import ./nix/hm-module.nix self; # NixOS Module - #nixosModules.default = import ./nix/module.nix inputs; + nixosModules.default = import ./nix/module.nix inputs; }; }