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" = {
minimize = ["<Shift><Control><Super>h"];
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
};
"org/gnome/desktop/interface" = {
@ -599,6 +603,9 @@
"org/gnome/shell/extensions/tilingshell" = {
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-left = ["<Super>h"];
focus-window-up = ["<Super>k"];

View file

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

View file

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

View file

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