Update keybindings

This commit is contained in:
insert 2025-02-27 06:29:22 -05:00
parent 3a43fc1002
commit e2e6370ce2
Signed by: insert
GPG key ID: A70775C389ACF105
2 changed files with 37 additions and 22 deletions

View file

@ -56,6 +56,7 @@
services.xserver.desktopManager.plasma5.enable = false; services.xserver.desktopManager.plasma5.enable = false;
services.xserver.desktopManager.gnome.enable = true; services.xserver.desktopManager.gnome.enable = true;
environment.gnome.excludePackages = (with pkgs; [ environment.gnome.excludePackages = (with pkgs; [
gnome-remote-desktop
gnome-weather gnome-weather
gnome-user-docs gnome-user-docs
gnome-text-editor gnome-text-editor
@ -218,14 +219,21 @@
monocraft monocraft
]; ];
nixpkgs.overlays = [ (final: prev: {
gnome-remote-desktop = prev.gnome-remote-desktop.overrideAttrs(old: {
buildInputs = old.buildInputs++[prev.libvncserver];
mesonFlags = old.mesonFlags++["-Dvnc=true"];
});
# List packages installed in system profile. To search, run: }) ];
# $ nix search wget
services.gnome.gnome-remote-desktop.enable = true;
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
environment.systemPackages = [ environment.systemPackages = [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget # wget
pkgs.tailscale pkgs.tailscale
pkgs.opencomposite
pkgs.wayland pkgs.wayland
pkgs.docker-compose pkgs.docker-compose
pkgs.networkmanagerapplet pkgs.networkmanagerapplet
@ -255,6 +263,7 @@
#inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland #inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland
pkgs.nautilus pkgs.nautilus
pkgs.libsForQt5.ark pkgs.libsForQt5.ark
pkgs.gnome-remote-desktop
]; ];
services.tailscale.enable = true; services.tailscale.enable = true;
services.gvfs.enable = true; services.gvfs.enable = true;

View file

@ -125,36 +125,36 @@
settings."org/gnome/desktop/wm/keybindings" = { settings."org/gnome/desktop/wm/keybindings" = {
switch-to-workspace-left = ["<Alt>Left"]; switch-to-workspace-left = ["<Alt>Left"];
switch-to-workspace-right = ["<Alt>Right"]; switch-to-workspace-right = ["<Alt>Right"];
switch-to-workspace-1="['<Alt>1']"; switch-to-workspace-1=["<Alt>1"];
switch-to-application-1="@as []"; switch-to-application-1="@as []";
move-to-workspace-1="['<Alt><Shift>1']"; move-to-workspace-1=["<Alt><Shift>1"];
switch-to-workspace-2="['<Alt>2']"; switch-to-workspace-2=["<Alt>2"];
switch-to-application-2="@as []"; switch-to-application-2="@as []";
move-to-workspace-2="['<Alt><Shift>2']"; move-to-workspace-2=["<Alt><Shift>2"];
switch-to-workspace-3="['<Alt>3']"; switch-to-workspace-3=["<Alt>3"];
switch-to-application-3="@as []"; switch-to-application-3="@as []";
move-to-workspace-3="['<Alt><Shift>3']"; move-to-workspace-3=["<Alt><Shift>3"];
switch-to-workspace-4="['<Alt>4']"; switch-to-workspace-4=["<Alt>4"];
switch-to-application-4="@as []"; switch-to-application-4="@as []";
move-to-workspace-4="['<Alt><Shift>4']"; move-to-workspace-4=["<Alt><Shift>4"];
switch-to-workspace-5="['<Alt>5']"; switch-to-workspace-5=["<Alt>5"];
switch-to-application-5="@as []"; switch-to-application-5="@as []";
move-to-workspace-5="['<Alt><Shift>5']"; move-to-workspace-5=["<Alt><Shift>5"];
switch-to-workspace-6="['<Alt>6']"; switch-to-workspace-6=["<Alt>6"];
switch-to-application-6="@as []"; switch-to-application-6="@as []";
move-to-workspace-6="['<Alt><Shift>6']"; move-to-workspace-6=["<Alt><Shift>6"];
switch-to-workspace-7="['<Alt>7']"; switch-to-workspace-7=["<Alt>7"];
switch-to-application-7="@as []"; switch-to-application-7="@as []";
move-to-workspace-7="['<Alt><Shift>7']"; move-to-workspace-7=["<Alt><Shift>7"];
switch-to-workspace-8="['<Alt>8']"; switch-to-workspace-8=["<Alt>8"];
switch-to-application-8="@as []"; switch-to-application-8="@as []";
move-to-workspace-8="['<Alt><Shift>8']"; move-to-workspace-8=["<Alt><Shift>8"];
switch-to-workspace-9="['<Alt>9']"; switch-to-workspace-9=["<Alt>9"];
switch-to-application-9="@as []"; switch-to-application-9="@as []";
move-to-workspace-9="['<Alt><Shift>9']"; move-to-workspace-9=["<Alt><Shift>9"];
switch-to-workspace-10="['<Alt>0']"; switch-to-workspace-10=["<Alt>0"];
switch-to-application-10="@as []"; switch-to-application-10="@as []";
move-to-workspace-10="['<Alt><Shift>0']"; move-to-workspace-10=["<Alt><Shift>0"];
close = ["<Alt>c"]; close = ["<Alt>c"];
toggle-fullscreen = ["<Alt>f"]; toggle-fullscreen = ["<Alt>f"];
}; };
@ -185,6 +185,10 @@
tile-by-default = true; tile-by-default = true;
active-hint = true; active-hint = true;
hint-color-rgba = "rgba(133,193,220,1)"; hint-color-rgba = "rgba(133,193,220,1)";
toggle-stacking-global = ["<Alt>w"];
toggle-stacking = ["w"];
toggle-floating = ["<Alt>v"];
tile-enter = ["<Alt>b"];
}; };
settings."org/gnome/shell/extensions/unite" = { settings."org/gnome/shell/extensions/unite" = {
hide-window-titlebars = "always"; hide-window-titlebars = "always";
@ -259,6 +263,8 @@
}; };
programs.librewolf.enable = true; programs.librewolf.enable = true;
services.kdeconnect.enable = true;
services.kdeconnect.indicator = true;
programs.git = { programs.git = {
enable = true; enable = true;