about summary refs log tree commit diff
path: root/nix/hosts/mba
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-10-26 11:03:52 -0700
committerFranck Cuny <franck@fcuny.net>2024-10-26 11:03:52 -0700
commitbeb9e15884a1d3eb519edbe92770460d4141625d (patch)
tree757eb3eb18578dc17c1380f10a5e40b9bb6a5e7e /nix/hosts/mba
parentfix typo for the name of the cascadia font (diff)
downloadworld-beb9e15884a1d3eb519edbe92770460d4141625d.tar.gz
centralize more configurations related to darwin
Diffstat (limited to 'nix/hosts/mba')
-rw-r--r--nix/hosts/mba/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/nix/hosts/mba/default.nix b/nix/hosts/mba/default.nix
index 8beef56..0a5caac 100644
--- a/nix/hosts/mba/default.nix
+++ b/nix/hosts/mba/default.nix
@@ -1,20 +1,13 @@
 { pkgs, self, ... }: {
-  services.nix-daemon.enable = true;
-
-  programs.fish.enable = true;
-
-  environment.shells = [ pkgs.fish ];
+  networking.hostName = "mba-fcuny";
 
   users.users.fcuny.home = "/Users/fcuny";
   users.users.fcuny.shell = pkgs.fish;
-
-  # Touch ID for sudo auth
-  security.pam.enableSudoTouchIdAuth = true;
+  programs.fish.enable = true;
+  environment.shells = [ pkgs.fish ];
 
   system.stateVersion = 5;
 
-  networking.hostName = "mba-fcuny";
-
   home-manager.users.fcuny =
     import "${self}/nix/profiles/home-manager/personal.nix";
 }