mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
20 lines
368 B
Nix
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;
|
|
}
|