mirror of
https://github.com/deltathetawastaken/dotfiles.git
synced 2025-12-06 07:16:37 +03:00
small cfg fiddling
This commit is contained in:
parent
ec3f81e682
commit
a9401d4dee
26
derivations/hyprdrop.nix
Normal file
26
derivations/hyprdrop.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "hyprdrop";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kjlo";
|
||||||
|
repo = "hyprdrop";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-QKkXJV8xU3JWbLw87Apfs54BaPXjrr7Uf2gm9I0PXa0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-TPfEEnK8peO5/SnrUNbaYd8l60V4azqySRWqBhLwl6E=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Rust implementation of Hdrop";
|
||||||
|
homepage = "https://github.com/kjlo/hyprdrop";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
|
mainProgram = "hyprdrop";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -53,9 +53,9 @@ in
|
||||||
programs.dconf.profiles.user.databases = [
|
programs.dconf.profiles.user.databases = [
|
||||||
{
|
{
|
||||||
settings = {
|
settings = {
|
||||||
#"org/gnome/mutter" = {
|
"org/gnome/mutter" = {
|
||||||
# experimental-features = [ "scale-monitor-framebuffer" ];
|
experimental-features = [ "scale-monitor-framebuffer" ];
|
||||||
#};
|
};
|
||||||
"org/gnome/settings-daemon/plugins/media-keys" = {
|
"org/gnome/settings-daemon/plugins/media-keys" = {
|
||||||
custom-keybindings = [
|
custom-keybindings = [
|
||||||
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"
|
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue