More keys, gaps, and rust flake template updates
Some checks failed
/ check (push) Failing after 2m28s

This commit is contained in:
Daniel Flanagan 2025-02-12 09:53:29 -06:00
parent dad1a7bf90
commit ed3698a9ba
4 changed files with 19 additions and 9 deletions

View file

@ -575,6 +575,10 @@
"org/gnome/desktop/wm/keybindings" = { "org/gnome/desktop/wm/keybindings" = {
minimize = ["<Shift><Control><Super>h"]; minimize = ["<Shift><Control><Super>h"];
show-desktop = ["<Super>d"]; show-desktop = ["<Super>d"];
move-to-workspace-left = ["<Super><Shift>h"];
move-to-workspace-right = ["<Super><Shift>l"];
switch-to-workspace-left = ["<Super><Control>h"];
switch-to-workspace-right = ["<Super><Control>l"];
# mouse-button-modifier = '<Super>'; # default # mouse-button-modifier = '<Super>'; # default
}; };
"org/gnome/desktop/interface" = { "org/gnome/desktop/interface" = {
@ -599,6 +603,9 @@
"org/gnome/shell/extensions/tilingshell" = { "org/gnome/shell/extensions/tilingshell" = {
inner-gaps = 8; inner-gaps = 8;
outer-gaps = 8;
window-border-width = 2;
window-border-color = "rgba(116,199,236,0.47)";
focus-window-right = ["<Super>l"]; focus-window-right = ["<Super>l"];
focus-window-left = ["<Super>h"]; focus-window-left = ["<Super>h"];
focus-window-up = ["<Super>k"]; focus-window-up = ["<Super>k"];

View file

@ -754,6 +754,7 @@
papirus-icon-theme papirus-icon-theme
adwaita-icon-theme adwaita-icon-theme
adwaita-icon-theme-legacy adwaita-icon-theme-legacy
hydrapaper
]; ];
}; };

View file

@ -1,6 +1,7 @@
{pkgs, ...}: rec { {pkgs, ...}: let
my-package = pkgs.rustPlatform.buildRustPackage { pname = "my-package";
pname = "my-binary"; main-package = pkgs.rustPlatform.buildRustPackage {
inherit pname;
version = "0.1.0"; version = "0.1.0";
/* /*
@ -16,7 +17,9 @@
src = ./..; src = ./..;
hash = pkgs.lib.fakeHash; hash = pkgs.lib.fakeHash;
cargoHash = pkgs.lib.fakeHash; cargoHash = pkgs.lib.fakeHash;
useFetchCargoVendor = true;
}; };
in {
default = my-package; ${pname} = main-package;
default = main-package;
} }

View file

@ -4,10 +4,10 @@
... ...
}: let }: let
inherit (pkgs) system; inherit (pkgs) system;
in rec { in {
my-package-dev = pkgs.mkShell { default = pkgs.mkShell {
inherit (self.checks.${system}.git-hooks) shellHook; inherit (self.checks.${system}.git-hooks) shellHook;
inputsFrom = [self.packages.${system}.my-package]; inputsFrom = [self.packages.${system}.default];
packages = with pkgs; [ packages = with pkgs; [
convco convco
rustPackages.clippy rustPackages.clippy
@ -18,5 +18,4 @@ in rec {
lldb lldb
]; ];
}; };
default = my-package-dev;
} }