Files
cyper-mac/hosts/cyper-mac/configuration.nix
2025-12-26 11:02:58 +01:00

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}
'';
};
};
};
}