vscod{e,ium}-fhs: add top-level aliases, add description
This commit is contained in:
parent
9bd292c929
commit
a060b84b32
|
@ -150,7 +150,12 @@ let
|
|||
inherit (unwrapped) pname version; # for home-manager module
|
||||
};
|
||||
|
||||
inherit meta;
|
||||
meta = meta // {
|
||||
description = ''
|
||||
Wrapped variant of ${pname} which launches in a FHS compatible envrionment.
|
||||
Should allow for easy usage of extensions without nix-specific modifications.
|
||||
'';
|
||||
};
|
||||
};
|
||||
in
|
||||
unwrapped
|
||||
|
|
|
@ -26744,6 +26744,8 @@ in
|
|||
};
|
||||
|
||||
vscode = callPackage ../applications/editors/vscode/vscode.nix { };
|
||||
vscode-fhs = vscode.fhs;
|
||||
vscode-fhsWithPackages = vscode.fhsWithPackages;
|
||||
|
||||
vscode-with-extensions = callPackage ../applications/editors/vscode/with-extensions.nix {};
|
||||
|
||||
|
@ -26752,6 +26754,8 @@ in
|
|||
vscode-extensions = recurseIntoAttrs (callPackage ../misc/vscode-extensions {});
|
||||
|
||||
vscodium = callPackage ../applications/editors/vscode/vscodium.nix { };
|
||||
vscodium-fhs = vscodium.fhs;
|
||||
vscodium-fhsWithPackages = vscodium.fhsWithPackages;
|
||||
|
||||
code-server = callPackage ../servers/code-server {
|
||||
inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Security;
|
||||
|
|
Loading…
Reference in New Issue