fix: gnome key repeat configuration, update readme with symlink notes
Some checks failed
/ check (push) Has been cancelled

This commit is contained in:
Daniel Flanagan 2025-02-18 11:53:15 -06:00
parent 8392e2e9f6
commit 3b29fbaae0
3 changed files with 19 additions and 2 deletions

View file

@ -431,8 +431,9 @@ in
"org/gnome/desktop/peripherals/keyboard" = {
# gnome key repeat
repeat-interval = 7;
delay = 200;
repeat = true;
repeat-interval = lib.hm.gvariant.mkUint32 10;
delay = lib.hm.gvariant.mkUint32 200;
};
"org/gnome/desktop/wm/preferences" = {
resize-with-right-button = true;

View file

@ -6,6 +6,13 @@
hooks = {
convco.enable = true;
nixfmt-rfc-style.enable = true;
# nix-flake-check = {
# enable = true;
# name = "nix flake check";
# entry = "${pkgs.nix}/bin/nix --extra-experimental-features 'nix-command flakes' flake check";
# pass_filenames = false;
# stages = [ "pre-commit" ];
# };
};
};
}

View file

@ -17,6 +17,15 @@ machine configuration, secret, and package management in a single flake. ❤️
can't recommend you actually use this in any way, but hopefully some stuff in
here is useful inspiration.
**NOTE**: I use some out-of-store symlinks for quicker configuration iteration,
so you will ultimately want to clone this repo somewhere and create the
following symlinks:
```shell
ln -s $REPO /etc/nix/flake
ln -s $REPO /etc/nixos # only for nixos systems
```
# Quick Start
```shell_session