nixos/machines/Monarch/tux.nix

17 lines
479 B
Nix
Raw Normal View History

2023-05-20 10:13:35 +01:00
{pkgs, ...}: {
imports = [../../home/personal.nix ../../home/gui/wezterm.nix];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "tux";
home.homeDirectory = "/Users/tux";
2023-04-21 07:28:18 +01:00
home.stateVersion = "22.11";
2023-05-20 10:13:35 +01:00
home.packages = [pkgs.gcc];
programs.zsh = {
sessionVariables.CC = "${pkgs.gcc}/bin/gcc";
envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';
};
services.syncthing.enable = true;
2023-04-21 07:28:18 +01:00
}