Install vscodium
This commit is contained in:
parent
adfce66893
commit
bd88e80ad5
1 changed files with 22 additions and 9 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
|
@ -10,13 +10,26 @@
|
||||||
"i2c"
|
"i2c"
|
||||||
"wheel"
|
"wheel"
|
||||||
];
|
];
|
||||||
packages = with pkgs; [
|
packages =
|
||||||
alacritty
|
with pkgs;
|
||||||
git
|
[
|
||||||
vim
|
alacritty
|
||||||
mpv
|
chezmoi
|
||||||
chezmoi
|
direnv
|
||||||
fuzzel
|
git
|
||||||
];
|
mpv
|
||||||
|
vim
|
||||||
|
(vscode-with-extensions.override {
|
||||||
|
vscode = vscodium;
|
||||||
|
vscodeExtensions = with vscode-extensions; [
|
||||||
|
jnoortheen.nix-ide
|
||||||
|
mkhl.direnv
|
||||||
|
yzhang.markdown-all-in-one
|
||||||
|
];
|
||||||
|
})
|
||||||
|
]
|
||||||
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||||
|
fuzzel
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue