Rename programs folder to desktop

This commit is contained in:
panotaka
2023-11-25 00:23:05 -04:00
parent e60eafd043
commit ca45821041
9 changed files with 26 additions and 312 deletions

16
home/desktop/vscode.nix Normal file
View File

@@ -0,0 +1,16 @@
{ config
, pkgs
, home-manager
, ...
}:
{
home.sessionVariables.NIXOS_OZONE_WL = "1";
programs.vscode = {
enable = true;
package = pkgs.vscodium.fhs;
extensions = with pkgs.vscode-extensions; [
github.copilot
];
};
}