work laptop update

This commit is contained in:
Parker TenBroeck 2026-05-29 09:14:37 -04:00
parent 3b1bfaccb7
commit a5d08d2dd1
3 changed files with 32 additions and 2 deletions

View file

@ -74,6 +74,35 @@ in {
group = "users"; group = "users";
}; };
home-manager.users.may.programs.ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks.wt = {
hostname = "host.westminsterteak.com";
user = "adminster";
port = 22448;
setEnv.TERM = "xterm-256color";
identityFile = "~/.ssh/wt_rsa";
};
matchBlocks.host_wt = {
hostname = "hostv2.westminsterteak.com";
user = "admin";
port = 22448;
setEnv.TERM = "xterm-256color";
identityFile = "~/.ssh/wt_ed25519";
};
matchBlocks.site_wt = {
hostname = "50.28.84.195";
user = "admin";
port = 22450;
setEnv.TERM = "xterm-256color";
identityFile = "~/.ssh/wt_ed25519";
};
};
home-manager.users.may.wayland.windowManager.hyprland.settings.exec-once = lib.mkAfter [ home-manager.users.may.wayland.windowManager.hyprland.settings.exec-once = lib.mkAfter [
(hyprOneLine '' (hyprOneLine ''
sleep 2 sleep 2

View file

@ -2,6 +2,7 @@
home-manager.users.may = { home-manager.users.may = {
home.sessionVariables = { home.sessionVariables = {
EDITOR = "nvim"; EDITOR = "nvim";
SUDO_EDITOR = "nvim";
VISUAL = "nvim"; VISUAL = "nvim";
}; };
}; };

View file

@ -1,3 +1,3 @@
{ pkgs, ...}: { { ... }: {
services.openssh.enable = true; services.openssh.enable = true;
} }