Files
nixos/home/gui/default.nix
T

60 lines
1.1 KiB
Nix
Raw Normal View History

2022-05-25 00:15:11 -05:00
{ pkgs, ... }:
2022-04-29 10:58:31 -05:00
{
imports = [
./chat.nix
2022-09-14 00:06:00 -05:00
./gnome.nix
2022-04-29 10:58:31 -05:00
./firefox.nix
./terminal.nix
];
2022-05-25 00:15:11 -05:00
home.packages = with pkgs; [
2022-10-04 11:13:55 -05:00
gopls
2022-08-19 10:17:23 -05:00
synology-drive-client
2022-09-07 20:01:51 -05:00
] ++ ( if pkgs.system == "x86_64-darwin" then
[
libreoffice-bin
] else
[
bitwarden
gnucash
handbrake
2022-09-14 00:06:00 -05:00
nextcloud-client
2022-09-07 20:01:51 -05:00
onlyoffice-bin
vlc
]
);
2022-10-04 11:13:55 -05:00
programs = {
vscode = let
codepkg = pkgs.vscode-with-extensions.override {
vscodeExtensions = with pkgs.vscode-extensions; [
eamodio.gitlens
2022-10-04 11:31:23 -05:00
file-icons.file-icons
2022-10-04 11:13:55 -05:00
formulahendry.auto-rename-tag
2022-10-04 11:40:08 -05:00
github.vscode-pull-request-github
2022-10-04 11:13:55 -05:00
golang.go
2022-10-04 11:31:23 -05:00
johnpapa.vscode-peacock
2022-10-04 11:13:55 -05:00
jnoortheen.nix-ide
2022-10-04 11:31:23 -05:00
kamikillerto.vscode-colorize
2022-10-04 11:13:55 -05:00
ms-azuretools.vscode-docker
ms-python.python
redhat.vscode-yaml
2022-10-04 11:31:23 -05:00
ritwickdey.liveserver
streetsidesoftware.code-spell-checker
vscodevim.vim
2022-10-04 11:13:55 -05:00
yzhang.markdown-all-in-one
];
};
in {
enable = true;
2022-10-04 11:31:23 -05:00
# userSettings = {
# "update.channel" = "none";
# "editor.renderWhitespace" = "all";
# "editor.tabWidth" = "8";
# };
2022-10-04 11:13:55 -05:00
package = codepkg;
};
};
2022-04-29 10:58:31 -05:00
}