27 lines
470 B
Nix
Executable File
27 lines
470 B
Nix
Executable File
{ 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";
|
|
};
|
|
}
|