about summary refs log tree commit diff
path: root/nix/hosts/mba
diff options
context:
space:
mode:
Diffstat (limited to 'nix/hosts/mba')
-rw-r--r--nix/hosts/mba/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/nix/hosts/mba/default.nix b/nix/hosts/mba/default.nix
new file mode 100644
index 0000000..d583df6
--- /dev/null
+++ b/nix/hosts/mba/default.nix
@@ -0,0 +1,13 @@
+{ self, ... }:
+{
+  services.nix-daemon.enable = true;
+
+  programs.zsh.enable = true;
+
+  users.users.fcuny.home = "/Users/fcuny";
+
+  # Touch ID for sudo auth
+  security.pam.enableSudoTouchIdAuth = true;
+
+  home-manager.users.fcuny = import "${self}/nix/profiles/home-manager/personal.nix";
+}