GVFS stuff, VS Code tweaks
This commit is contained in:
parent
fc8eb06006
commit
8d88b3c740
4 changed files with 7 additions and 6 deletions
|
@ -16,7 +16,7 @@ let
|
|||
"security.tls.enable_0rtt_data" = false;
|
||||
"media.ffmpeg.vaapi.enabled" = true;
|
||||
"media.rdd-ffmpeg.enabled" = true;
|
||||
"network.http.http3.enabled" = false; # Temporary workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=1749908
|
||||
# "network.http.http3.enabled" = false; # Temporary workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=1749908
|
||||
};
|
||||
|
||||
nonDefaultDesktop = pkgs.makeDesktopItem {
|
||||
|
|
|
@ -59,6 +59,7 @@ in
|
|||
};
|
||||
|
||||
extraConfig = {
|
||||
credential.helper = "${pkgs.git.override { withLibsecret = true; }}/bin/git-credential-libsecret";
|
||||
init = {
|
||||
defaultBranch = "main";
|
||||
};
|
||||
|
|
|
@ -399,7 +399,6 @@
|
|||
"python.languageServer": "Default",
|
||||
"shellcheck.enableQuickFix": true,
|
||||
"shellcheck.customArgs": ["--enable=all"],
|
||||
"python.defaultInterpreterPath": "/usr/bin/python",
|
||||
"workbench.colorTheme": "Monokai Pro",
|
||||
"[elixir]": {
|
||||
"editor.defaultFormatter": "JakeBecker.elixir-ls"
|
||||
|
@ -419,8 +418,6 @@
|
|||
"workbench.editorAssociations": {
|
||||
"*.ipynb": "jupyter.notebook.ipynb"
|
||||
},
|
||||
"zigLanguageClient.path": "/home/erwin/zls/zls",
|
||||
"zig.buildOnSave": true,
|
||||
"editor.cursorStyle": "line",
|
||||
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
|
||||
"editor.wordWrap": "off",
|
||||
|
|
|
@ -189,6 +189,10 @@ in
|
|||
programs = {
|
||||
dconf.enable = true;
|
||||
|
||||
seahorse.enable = true;
|
||||
|
||||
steam.enable = true;
|
||||
|
||||
sway = {
|
||||
enable = true;
|
||||
wrapperFeatures = {
|
||||
|
@ -197,8 +201,6 @@ in
|
|||
};
|
||||
extraPackages = with pkgs; [ swaylock-effects swayidle ];
|
||||
};
|
||||
|
||||
steam.enable = true;
|
||||
};
|
||||
|
||||
xdg = {
|
||||
|
@ -218,6 +220,7 @@ in
|
|||
services = {
|
||||
dbus.packages = [ pkgs.gcr ];
|
||||
avahi.publish.workstation = true;
|
||||
gvfs.enable = true;
|
||||
};
|
||||
|
||||
security = {
|
||||
|
|
Loading…
Reference in a new issue