mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
30 lines
519 B
Nix
30 lines
519 B
Nix
|
# Device: Apple M1 Pro
|
||
|
# CPU: Apple M1 Pro
|
||
|
# RAM: 16GB DDR4
|
||
|
# SATA: 500GB SSD
|
||
|
|
||
|
_: {
|
||
|
imports = [
|
||
|
../_mixins/console/homebrew.nix
|
||
|
./brews.nix
|
||
|
];
|
||
|
|
||
|
networking.hostName = "sktc0";
|
||
|
|
||
|
system = {
|
||
|
defaults = {
|
||
|
dock = {
|
||
|
autohide = true;
|
||
|
orientation = "bottom";
|
||
|
tilesize = 80;
|
||
|
};
|
||
|
finder = { };
|
||
|
trackpad = {
|
||
|
Clicking = true;
|
||
|
TrackpadRightClick = true;
|
||
|
};
|
||
|
};
|
||
|
keyboard = { enableKeyMapping = true; };
|
||
|
};
|
||
|
}
|