Files
nix-config/systems/aarch64-darwin/macbook-pro/default.nix
mjallen18 f3aafffcaa deadnix
2025-07-24 11:19:19 -05:00

30 lines
458 B
Nix
Executable File

{
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";
};
}