From e6a7b3f2ebb549f19df65ed45af9a4fc398cd9cf Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Thu, 16 Apr 2026 13:52:25 -0300 Subject: [PATCH] feat(fighter): add terminal home to fighter --- flake.nix | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/flake.nix b/flake.nix index 47c8def..2843f13 100644 --- a/flake.nix +++ b/flake.nix @@ -101,20 +101,6 @@ ./style.nix ]; }; - "infiltrator" = nixpkgs.lib.nixosSystem rec { - system = "x86_64-linux"; - specialArgs = { - pkgs-unstable = import nixpkgs-unstable { - inherit system; - config.allowUnfree = true; - config.allowUnfreePredicate = _: true; - }; - inherit inputs self; - }; - modules = [ - ./hosts/infriltrator/configuration.nix - ]; - }; "fighter" = nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; specialArgs = { @@ -127,6 +113,23 @@ }; modules = [ ./hosts/fighter/configuration.nix + ./home/terminal/configuration.nix + inputs.stylix.nixosModules.stylix + ./style.nix + ]; + }; + "infiltrator" = nixpkgs.lib.nixosSystem rec { + system = "x86_64-linux"; + specialArgs = { + pkgs-unstable = import nixpkgs-unstable { + inherit system; + config.allowUnfree = true; + config.allowUnfreePredicate = _: true; + }; + inherit inputs self; + }; + modules = [ + ./hosts/infriltrator/configuration.nix ]; }; "lost-home" = nixpkgs.lib.nixosSystem rec {