enabled nix module

This commit is contained in:
Kristian Krsnik 2023-08-04 23:25:24 +02:00
parent fcd9326cf9
commit 9754ea32a6

View File

@ -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;
};
}