Files
nix-config/systems/aarch64-darwin/macbook-pro/default.nix
mjallen18 c5e8fff07d temp
2025-09-15 15:34:22 -05:00

33 lines
524 B
Nix
Executable File

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