Files
nixos-config/machine/macbook/configuration.nix
2024-11-28 10:56:04 +01:00

31 lines
593 B
Nix

{
config,
pkgs,
lib,
outputs,
inputs,
...
}: {
nixpkgs.hostPlatform = "aarch64-darwin";
system.defaults = {
dock.autohide = true;
dock.mru-spaces = false;
# finder.AppleShowAllExtensions = true;
# finder.FXPreferredViewStyle = "clmv";
screencapture.location = "~/Pictures/screenshots";
screensaver.askForPasswordDelay = 10;
};
services.nix-daemon.enable = true;
nix.settings.experimental-features = "nix-command flakes";
nix = {
configureBuildUsers = true;
useDaemon = true;
};
homebrew.enable = true;
system.stateVersion = 5;
}