mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-22 01:19:45 +01:00
38 lines
887 B
Nix
38 lines
887 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
firefox
|
|
];
|
|
|
|
|
|
# TODO vscode & chrome both have wayland support, but they don't work with fcitx5, need to fix it.
|
|
programs = {
|
|
|
|
# source code: https://github.com/nix-community/home-manager/blob/master/modules/programs/chromium.nix
|
|
google-chrome = {
|
|
enable = true;
|
|
|
|
# chrome wayland support was broken on nixos-unstable branch, so fallback to stable branch for now
|
|
# https://github.com/swaywm/sway/issues/7562
|
|
package = pkgs.google-chrome;
|
|
|
|
# commandLineArgs = [
|
|
# ];
|
|
};
|
|
|
|
vscode = {
|
|
enable = true;
|
|
# use the stable version
|
|
# package = pkgs.vscode.override {
|
|
# commandLineArgs = [
|
|
# ];
|
|
# };
|
|
|
|
# let vscode sync and update its configuration & extensions across devices, using github account.
|
|
# userSettings = {};
|
|
};
|
|
};
|
|
}
|