[vscode] Move to home programs

This commit is contained in:
Florian RICHER 2024-02-17 13:45:15 +01:00
parent 57fd0f31f3
commit 342c988e6b
4 changed files with 16 additions and 4 deletions

View file

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{
pkgs,
...
}: {
programs.git = {
enable = true;
userName = "Florian RICHER";

12
home/programs/vscode.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
programs.vscode = {
enable = true;
enableUpdateCheck = false;
extensions = with pkgs; [
vscode-extensions.bbenoist.nix
];
};
}