mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
15 lines
187 B
Nix
15 lines
187 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../darwin
|
|
];
|
|
|
|
users.users.kogakure = {
|
|
name = "kogakure";
|
|
home = "/Users/kogakure";
|
|
};
|
|
|
|
homebrew = import ./homebrew.nix;
|
|
}
|