mirror of
https://github.com/ParkerTenBroeck/dotfiles.git
synced 2026-06-06 21:00:35 -04:00
work laptop update
This commit is contained in:
parent
3b1bfaccb7
commit
a5d08d2dd1
3 changed files with 32 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
{ pkgs, ...}: {
|
{ ... }: {
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue