Files
nixos/home/gui/default.nix
T

54 lines
909 B
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; [
coenraads.bracket-pair-colorizer-2
eamodio.gitlens
formulahendry.auto-rename-tag
golang.go
jnoortheen.nix-ide
ms-azuretools.vscode-docker
ms-python.python
redhat.vscode-yaml
yzhang.markdown-all-in-one
];
};
in {
enable = true;
userSettings = {
"update.channel" = "none";
"editor.renderWhitespace" = "all";
"editor.tabWidth" = "8";
};
package = codepkg;
};
};
2022-04-29 10:58:31 -05:00
}