Added fprintd (fingerprint reader) support

Added Android Debug Bridge
Fixed seconds not showing on waybar, with the caveat that now, every
second, all the other widgets shift based on the size of the glyphs
This commit is contained in:
vorboyvo 2024-02-21 08:42:04 -05:00
parent 37dbb18143
commit 1dee97c4a4
3 changed files with 9 additions and 1 deletions

View file

@ -107,10 +107,13 @@
users.users.alice = {
isNormalUser = true;
home = "/home/alice";
extraGroups = [ "wheel" "networkmanager" "video" ]; # Enable 'sudo' for the user.
extraGroups = [ "wheel" "networkmanager" "video" ] ++ [ "adbusers" ]; # Enable 'sudo' for the user.
initialPassword = "manysuchcases";
};
home-manager.users.alice = import ./home.nix;
# Fingerprint reader stuff
services.fprintd.enable = true;
# Make sure swaylock works (defined in home.nix)
security.pam.services.swaylock = { };
@ -150,6 +153,9 @@
# Enable tailscale
services.tailscale.enable = true;
# Enable adb
programs.adb.enable = true;
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;

View file

@ -72,6 +72,7 @@ in
spacing = 5;
};
clock = {
interval = 1;
format = "{:%H:%M:%S %a %F}";
tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";
};

1
todo
View file

@ -7,3 +7,4 @@ media player daemon
dmenu files
notifications timeout and other assorted settings
add pandoc support for markdown rendering
seconds don't show on waybar lol