diff --git a/flake.nix b/flake.nix index f0989ac..b9d76bf 100644 --- a/flake.nix +++ b/flake.nix @@ -208,6 +208,19 @@ ./modules ]; }; + + titan = lib.nixosSystem { + specialArgs = { inherit inputs; }; + modules = [ + { + nixpkgs = { inherit pkgs; }; + } + ./hosts/titan + disko.nixosModules.disko + inputs.sops-nix.nixosModules.sops + ./modules + ]; + }; }; homeConfigurations = let @@ -233,6 +246,15 @@ inputs.nixvim.homeManagerModules.nixvim ]; }; + + "codespace@codespace" = lib.homeManagerConfiguration { + inherit pkgs; + extraSpecialArgs = { inherit inputs; }; + modules = [ + ./home/yt/codespace.nix + inputs.nixvim.homeManagerModules.nixvim + ]; + }; }; }; } diff --git a/overlay/default.nix b/overlay/default.nix index 03dab16..6f577ac 100644 --- a/overlay/default.nix +++ b/overlay/default.nix @@ -14,8 +14,7 @@ importedOverlays stable = inputs.nixpkgs-stable; in { - conduwuit = - inputs.conduwuit.packages.x86_64-linux.static-x86_64-linux-musl-all-features-x86_64-haswell-optimised; + conduwuit = inputs.conduwuit.packages.x86_64-linux.static-x86_64-linux-musl-all-features-x86_64-haswell-optimised; } ) ]