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