I love it when my lsp dies and i don't notice

This commit is contained in:
Tyler Beckman 2025-01-06 18:34:25 -07:00
parent f03c4875ff
commit 2a15c44249
Signed by: Ty
GPG key ID: 2813440C772555A4
2 changed files with 8 additions and 5 deletions

View file

@ -86,7 +86,7 @@
meta = {
preset = "cli";
username = "tyler_beckman";
}
};
};
# Setup NixOS configurations

View file

@ -2,15 +2,18 @@
{
createHomeManagerConfig = {
system ? "x86_64-linux",
entrypoint
meta ? {}
}: inputs.home-manager.lib.homeManagerConfiguration {
pkgs = inputs.nixpkgs.legacyPackages.${system};
modules = [ ./home-manager/standalone.nix ];
modules = [
./home-manager/standalone.nix
{ meta.home-manager = meta; }
];
extraSpecialArgs = {
inherit input system secrets;
inherit inputs system secrets;
pkgs-stable = inputs.nixpkgs-stable.legacyPackages.${system};
};
}
};
createNixosSystem = {
system ? "x86_64-linux",