This commit is contained in:
mjallen18
2025-07-21 09:18:37 -05:00
parent 608a6ce9b8
commit 4abbd0ef33
5 changed files with 53 additions and 47 deletions

View File

@@ -0,0 +1,26 @@
{ config, inputs, pkgs, ... }:
{
imports = [
./nix.nix
./homebrew.nix
./programs.nix
./system.nix
];
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment = {
systemPackages = with pkgs; [
asitop
mas
nh
];
};
security.pam.services.sudo_local.touchIdAuth = true;
users.users.mattjallen = {
name = "mattjallen";
home = "/Users/mattjallen";
};
}