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 = {
|
||||
preset = "cli";
|
||||
username = "tyler_beckman";
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
# Setup NixOS configurations
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue