30 lines
462 B
Nix
30 lines
462 B
Nix
{
|
|
pkgs,
|
|
primaryUser,
|
|
...
|
|
}:
|
|
{
|
|
networking.hostName = "cyper-mac";
|
|
|
|
# host-specific homebrew casks
|
|
#homebrew.casks = [
|
|
# "slack"
|
|
#];
|
|
|
|
# host-specific home-manager configuration
|
|
home-manager.users.${primaryUser} = {
|
|
home.packages = with pkgs; [
|
|
graphite-cli
|
|
];
|
|
|
|
programs = {
|
|
zsh = {
|
|
initContent = ''
|
|
# Source shell functions
|
|
source ${./shell-functions.sh}
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|