10 lines
252 B
Nix
10 lines
252 B
Nix
![]() |
# For people that doesn't like neovim :)
|
||
|
{ pkgs, ... }:
|
||
|
{
|
||
|
programs.vscode = {
|
||
|
enable = true;
|
||
|
package = pkgs.vscodium;
|
||
|
# I don't add extensions here, because nixpkgs doesn't contain
|
||
|
# extensions I need. Oops.
|
||
|
};
|
||
|
}
|