nix-config/machines/thinkpad/default.nix
larstvei 887d820452 Make fingerprint reader work
And add some settings for hyprlock.
2025-10-01 00:02:15 +02:00

29 lines
542 B
Nix

{
imports = [
./keyboard
./hardware
../../modules/base
../../modules/nixos
];
home-manager.users.larstvei.imports = [
../../modules/home/full
../../modules/desktop
];
services.fprintd.enable = true;
security.pam.services = {
login.fprintAuth = true;
sudo.fprintAuth = true;
hyprlock.fprintAuth = true;
};
networking.hostName = "larstvei-think";
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "25.05";
}