Update home/.chezmoiignore

Update home/.config/nvim/lsp/luals.lua
Update home/.config/nvim/lua/plugins/lang/markdown/obsidian-nvim.lua
Update home/.config/nvim/lua/plugins/mod/snacks-nvim.lua
Add home/.config/nvim/luarc.jsonc
Update home/.config/zed/keymap.json
Update nixcfgs/users/js0ny/packages/cli.nix
Update nixcfgs/users/js0ny/packages/gui.nix
Update nixcfgs/users/js0ny/programs/gnome.nix
This commit is contained in:
js0ny 2025-10-13 19:30:59 +01:00
parent 0e851754d7
commit 3d12a52b47
9 changed files with 116 additions and 15 deletions

View file

@ -50,5 +50,6 @@
ta-lib
ddgr
protonvpn-cli
markdown-oxide
];
}

View file

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
home.packages = with pkgs; [
kitty
ghostty
@ -31,6 +30,6 @@
qbittorrent
protonvpn-gui
proton-pass
protonmail-bridge
protonmail-bridge-gui
];
}

View file

@ -2,6 +2,7 @@
home.packages = with pkgs; [
gnome-tweaks
sushi
dconf-editor
gnomeExtensions.dash-to-dock
gnomeExtensions.caffeine
gnomeExtensions.logo-menu
@ -27,6 +28,8 @@
dconf.settings = {
"org/gnome/desktop/interface" = {
clock-show-seconds = true;
clock-show-weekday = true;
icon-theme = "Papirus";
accent-color = "pink";
show-battery-percentage = true;
@ -46,12 +49,33 @@
};
"org/gnome/shell" = {
favorite-apps = [
"org.kde.dolphin.desktop"
"com.mitchellh.ghostty.desktop"
"firefox.desktop"
"code.desktop"
];
};
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom-0" = {
name = "Open File Explorer";
command = "dolphin";
binding = "<Super>e";
};
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom-1" = {
name = "Open Terminal via Win-R";
command = "ghostty";
binding = "<Super>r";
};
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom-2" = {
name = "Open Terminal via Ctrl-Alt-T";
command = "ghostty";
binding = "<Ctrl><Alt>t";
};
"org/gnome/settings-daemon/plugins/media-keys" = {
custom-keybindings = [
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom-0/"
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom-1/"
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom-2/"
];
};
};
# qt.style.name = "adwaita";