From 7b01f7af91ed30ba98bff4e67f551ef173ba607a Mon Sep 17 00:00:00 2001 From: rogueking Date: Tue, 19 Aug 2025 11:41:00 -0700 Subject: [PATCH] darwin fixes --- hosts/eva-02/configuration.nix | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/hosts/eva-02/configuration.nix b/hosts/eva-02/configuration.nix index 64dcc25..af4d546 100644 --- a/hosts/eva-02/configuration.nix +++ b/hosts/eva-02/configuration.nix @@ -54,6 +54,10 @@ # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true; + + # Enable Touch ID + security.pam.enableSudoTouchIdAuth = true; + # Define a user account. Don't forget to set a password with ‘passwd’. programs.zsh.enable = true; @@ -158,15 +162,6 @@ backupFileExtension = "backup"; }; - #home-manager = { - # extraSpecialArgs = { inherit inputs; }; - # users = { - # "rogueking" = import ../home-manager/home.nix; - # }; - # backupFileExtension = "backup"; - #}; - - # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; @@ -192,6 +187,6 @@ # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "25.05"; # Did you read the comment? + # system.stateVersion = "25.05"; }