mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.programs.vscode;
|
||
|
|
||
|
in
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
programs.vscode = {
|
||
|
enable = mkEnableOption "Visual Studio Code";
|
||
|
|
||
|
userSettings = mkOption {
|
||
|
type = types.attrs;
|
||
|
default = {};
|
||
|
example = literalExample ''
|
||
|
{
|
||
|
"update.channel" = "none";
|
||
|
"[nix]"."editor.tabSize" = 2;
|
||
|
}
|
||
|
'';
|
||
|
description = ''
|
||
|
Configuration written to
|
||
|
<filename>~/.config/Code/User/settings.json</filename>.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
extensions = mkOption {
|
||
|
type = types.listOf types.package;
|
||
|
default = [];
|
||
|
description = ''
|
||
|
The extensions Visual Studio Code should be started with.
|
||
|
These will override but not delete manually installed ones.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = [
|
||
|
(pkgs.vscode-with-extensions.override {
|
||
|
vscodeExtensions = cfg.extensions;
|
||
|
})
|
||
|
];
|
||
|
|
||
|
xdg.configFile."Code/User/settings.json".text =
|
||
|
builtins.toJSON cfg.userSettings;
|
||
|
};
|
||
|
}
|