dots/modules/home-manager/common/all-gui.nix
Gene Liverman 4e7b708d4c Move Element to Flatpak / Homebrew
Element seems to need to compile electron every single update and, on
macOS, runs another app called electron that is not of use to me.
Flatpak and Homebrew will work faster and be user friendly all around.
2023-12-28 20:26:43 -05:00

10 lines
168 B
Nix

{ pkgs, genebean-omp-themes, ... }: {
home.packages = with pkgs; [
# nothing here right now
];
programs = {
vscode = {
enable = true;
};
};
}