From 9754ea32a6cc69b08af6a5a40fc6b4aa488b4bf8 Mon Sep 17 00:00:00 2001 From: Kristian Krsnik Date: Fri, 4 Aug 2023 23:25:24 +0200 Subject: [PATCH] enabled nix module --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; }