From 8785a2bd047297fe46dd232b38668c161fcbac9d Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Tue, 18 Mar 2025 23:11:20 +0100 Subject: [PATCH] add jack flake Former-commit-id: bb2cc5adf64ff717ef930072dfb23f9197ae4762 --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flake.nix b/flake.nix index aa86496..4574e30 100644 --- a/flake.nix +++ b/flake.nix @@ -53,6 +53,15 @@ ./hosts/laptop/configuration.nix # CHANGEME: change the path to match your host folder ]; }; + jack = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + { _module.args = { inherit inputs; }; } + inputs.home-manager.nixosModules.home-manager + inputs.stylix.nixosModules.stylix + ./hosts/server/configuration.nix + ]; + }; }; }; }