Files
dotfiles/hosts/mac-mini/configuration.nix
2024-07-31 16:48:32 +02:00

20 lines
351 B
Nix

{ config, ... }:
{
imports = [
../../darwin
];
users.users.kogakure = {
name = "kogakure";
home = "/Users/kogakure";
};
nixpkgs.hostPlatform = "aarch64-darwin";
# Screenshots
system.defaults.screencapture.location = "${config.users.users.kogakure.home}/Dropbox/Bilder/Screenshots";
homebrew = import ./homebrew.nix;
}