This commit is contained in:
Tao Tien 2025-02-25 17:29:04 -08:00
parent 79f74b4e7f
commit 94602bc06b
4 changed files with 11 additions and 6 deletions

View file

@ -79,7 +79,7 @@
# delve # delve
# rust # rust
rustlings cargo-binstall
bacon bacon
cargo-expand cargo-expand
cargo-feature cargo-feature

View file

@ -58,7 +58,8 @@
# ACTION=="add", SUBSYSTEM=="backlight", RUN+="${pkgs.coreutils}/bin/chgrp video /sys/class/backlight/%k/brightness" # ACTION=="add", SUBSYSTEM=="backlight", RUN+="${pkgs.coreutils}/bin/chgrp video /sys/class/backlight/%k/brightness"
# ACTION=="add", SUBSYSTEM=="backlight", RUN+="${pkgs.coreutils}/bin/chmod g+w /sys/class/backlight/%k/brightness" # ACTION=="add", SUBSYSTEM=="backlight", RUN+="${pkgs.coreutils}/bin/chmod g+w /sys/class/backlight/%k/brightness"
ACTION=="add|change", SUBSYSTEM=="usb", DRIVERS=="usb", ATTRS{idVendor}=="32ac", ATTRS{idProduct}=="0012", ATTR{power/wakeup}="disabled" # ACTION=="add|change", SUBSYSTEM=="usb", DRIVERS=="usb", ATTRS{idVendor}=="32ac", ATTRS{idProduct}=="0012", ATTR{power/wakeup}="disabled"
# ACTION=="add|change", KERNEL=="i2c", SUBSYSTEM=="i2c", DEVPATH=="/sys/devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00", ATTR{power/wakeup}="disabled"
''; '';
services.fprintd.enable = true; services.fprintd.enable = true;

View file

@ -109,6 +109,10 @@ in {
userEmail = "29749622+taotien@users.noreply.github.com"; userEmail = "29749622+taotien@users.noreply.github.com";
# extraConfig = { # extraConfig = {
# }; # };
ignores = [
"/target"
".direnv"
];
}; };
nushell = { nushell = {
@ -130,8 +134,8 @@ in {
forwardAgent = true; forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519"; identityFile = "/home/tao/.ssh/id_ed25519";
}; };
"beagle" = { "griffin" = {
hostname = "beagle"; hostname = "griffin";
user = "tltien"; user = "tltien";
forwardAgent = true; forwardAgent = true;
identityFile = "/home/tao/.ssh/id_ed25519"; identityFile = "/home/tao/.ssh/id_ed25519";

View file

@ -12,8 +12,8 @@
cursor-line = "warning"; cursor-line = "warning";
}; };
auto-save = { auto-save = {
focus-lost = true; focus-lost = false;
after-delay.enable = true; after-delay.enable = false;
after-delay.timeout = 1000; after-delay.timeout = 1000;
}; };
shell = ["nu" "--stdin" "-c"]; shell = ["nu" "--stdin" "-c"];