mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
27 lines
479 B
Nix
27 lines
479 B
Nix
{ config, pkgs, lib, inputs, meta, ... }: {
|
|
imports = with meta; [
|
|
profiles.hardware.aarch64-darwin
|
|
profiles.darwin
|
|
users.kat.darwin
|
|
users.kat.dev
|
|
];
|
|
|
|
security.pam.enableSudoTouchIdAuth = true;
|
|
|
|
homebrew = {
|
|
brewPrefix = "/opt/homebrew/bin";
|
|
casks = [
|
|
"element"
|
|
"visual-studio-code"
|
|
"firefox"
|
|
"discord"
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
awscli
|
|
jq
|
|
];
|
|
|
|
system.stateVersion = 4;
|
|
}
|