mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
10 lines
156 B
Nix
10 lines
156 B
Nix
{ config, pkgs, user, ... }:
|
|
{
|
|
home-manager.users.${user} = {
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.vscode.fhs;
|
|
};
|
|
};
|
|
}
|