What seems to be a workable config

This commit is contained in:
Olaf
2025-05-07 11:46:07 +02:00
parent fbd41a72f1
commit 62d004a6a2
13 changed files with 638 additions and 62 deletions

View File

@ -1,9 +1,19 @@
{ agenix, config, pkgs, ... }:
let user = "%USER%"; in
let user = "olaf"; in
{
security = {
pam = {
services ={
sudo_local ={
touchIdAuth = true;
};
};
};
};
imports = [
../../modules/darwin/secrets.nix
../../modules/darwin/home-manager.nix
@ -39,6 +49,7 @@ let user = "%USER%"; in
environment.systemPackages = with pkgs; [
emacs-unstable
agenix.packages."${pkgs.system}".default
nixd
] ++ (import ../../modules/shared/packages.nix { inherit pkgs; });
launchd.user.agents.emacs.path = [ config.environment.systemPath ];