From 4d21ced458f6ba7f847bb047543cafcdd8822e62 Mon Sep 17 00:00:00 2001 From: kB01 Date: Thu, 12 Dec 2024 19:17:01 +0100 Subject: [PATCH] Added Host Rubtrm to Flake (lix does not build for i686 currently) --- flake.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b4efe02..2d89e3f 100644 --- a/flake.nix +++ b/flake.nix @@ -29,19 +29,31 @@ # Modules for Host HyperC systems.hosts.HyperC.modules = with inputs; [ + lix-module.nixosModules.default ]; # Modules for Host voloxo systems.hosts.voloxo.modules = with inputs; [ + lix-module.nixosModules.default ]; # Modules for Host kb-games-01 systems.hosts.kb-games-01.modules = with inputs; [ + lix-module.nixosModules.default + ]; + + # Modules for Host LoyAdjo + systems.hosts.LoyAdjo.modules = with inputs; [ + lix-module.nixosModules.default + ]; + + # Modules for Host Rubtrm + systems.hosts.Rubtrm.modules = with inputs; [ + # lix-module.nixosModules.default ]; # Modules that get imported to every NixOS system systems.modules.nixos = with inputs; [ - lix-module.nixosModules.default ]; outputs-builder = channels: { formatter = channels.nixpkgs.nixfmt-rfc-style; };