I love it when my lsp dies and i don't notice
This commit is contained in:
parent
f03c4875ff
commit
2a15c44249
2 changed files with 8 additions and 5 deletions
|
@ -86,7 +86,7 @@
|
||||||
meta = {
|
meta = {
|
||||||
preset = "cli";
|
preset = "cli";
|
||||||
username = "tyler_beckman";
|
username = "tyler_beckman";
|
||||||
}
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Setup NixOS configurations
|
# Setup NixOS configurations
|
||||||
|
|
|
@ -2,15 +2,18 @@
|
||||||
{
|
{
|
||||||
createHomeManagerConfig = {
|
createHomeManagerConfig = {
|
||||||
system ? "x86_64-linux",
|
system ? "x86_64-linux",
|
||||||
entrypoint
|
meta ? {}
|
||||||
}: inputs.home-manager.lib.homeManagerConfiguration {
|
}: inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = inputs.nixpkgs.legacyPackages.${system};
|
pkgs = inputs.nixpkgs.legacyPackages.${system};
|
||||||
modules = [ ./home-manager/standalone.nix ];
|
modules = [
|
||||||
|
./home-manager/standalone.nix
|
||||||
|
{ meta.home-manager = meta; }
|
||||||
|
];
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit input system secrets;
|
inherit inputs system secrets;
|
||||||
pkgs-stable = inputs.nixpkgs-stable.legacyPackages.${system};
|
pkgs-stable = inputs.nixpkgs-stable.legacyPackages.${system};
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
|
|
||||||
createNixosSystem = {
|
createNixosSystem = {
|
||||||
system ? "x86_64-linux",
|
system ? "x86_64-linux",
|
||||||
|
|
Loading…
Reference in a new issue