Files
dotfiles/nix/hosts/mac-mini/configuration.nix
2024-06-30 09:46:48 +02:00

15 lines
187 B
Nix

{ pkgs, config, ... }:
{
imports = [
../../darwin
];
users.users.kogakure = {
name = "kogakure";
home = "/Users/kogakure";
};
homebrew = import ./homebrew.nix;
}