Files
dotfiles/hosts/macbook-2023/configuration.nix
2024-07-31 17:14:01 +02:00

20 lines
368 B
Nix

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