36 lines
755 B
Nix
36 lines
755 B
Nix
{
|
|
myConfig = {
|
|
nixos = {
|
|
username = "kenji";
|
|
hostname = "hakase";
|
|
timezone = "America/Chicago";
|
|
shell = "fish";
|
|
};
|
|
git = {
|
|
username = "kenji";
|
|
email = "kenji@hakase";
|
|
defaultBranch = "master";
|
|
};
|
|
ssh = {
|
|
extraConfig = ''
|
|
Host macair
|
|
User biscuit
|
|
HostName 192.168.68.81
|
|
|
|
Host gitea.sakamoto.dev
|
|
User kenji
|
|
ProxyCommand cloudflared access ssh --hostname %h
|
|
HostName gitea.sakamoto.dev
|
|
'';
|
|
};
|
|
terminal = {
|
|
aliases = {
|
|
update = "sudo nixos-rebuild switch --flake ~/.config/nixos-new/#hakase";
|
|
};
|
|
};
|
|
hyprland = {
|
|
monitors = ["HDMI-A-1, 1920x1080@120, auto, 1"];
|
|
};
|
|
};
|
|
}
|