Compare commits
2 Commits
d2803b8e5c
...
6cd0bf2f93
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6cd0bf2f93 | ||
|
|
1cc9ace520 |
@@ -16,7 +16,7 @@
|
||||
enableZshIntegration = true;
|
||||
package = config.lib.nixGL.wrap pkgs.ghostty;
|
||||
settings = {
|
||||
# command = "TERM=xterm-256color /usr/bin/bash";
|
||||
command = "TERM=xterm-256color /usr/bin/bash";
|
||||
font-size = 12;
|
||||
font-family = "Source Code Pro";
|
||||
# theme = "idleToes";
|
||||
@@ -58,7 +58,7 @@
|
||||
name = "Ghostty";
|
||||
type = "Application";
|
||||
comment = "A terminal emulator";
|
||||
exec = "ghostty";
|
||||
exec = "nixGL ghostty";
|
||||
icon = "com.mitchellh.ghostty";
|
||||
terminal = false;
|
||||
startupNotify = true;
|
||||
@@ -75,7 +75,7 @@
|
||||
actions = {
|
||||
new-window = {
|
||||
name = "New Window";
|
||||
exec = "ghostty";
|
||||
exec = "nixGL ghostty";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -2,16 +2,29 @@
|
||||
{
|
||||
programs.ssh = lib.mkIf config.ssh {
|
||||
enable = true;
|
||||
enableDefaultConfig = false;
|
||||
extraConfig = ''
|
||||
SetEnv TERM="xterm-256color"
|
||||
${lib.optionalString config._1password "IdentityAgent ~/.1password/agent.sock"}
|
||||
'';
|
||||
matchBlocks = lib.mkMerge [
|
||||
{
|
||||
"*" = {
|
||||
user = "john";
|
||||
forwardAgent = true;
|
||||
serverAliveInterval = 60;
|
||||
serverAliveCountMax = 2;
|
||||
};
|
||||
}
|
||||
(lib.mkIf (config.profile == "personal") {
|
||||
"ad-nix" = {
|
||||
hostname = "192.168.1.201";
|
||||
user = "appdaemon";
|
||||
};
|
||||
"appdaemon" = {
|
||||
hostname = "192.168.1.242";
|
||||
user = "appdaemon";
|
||||
};
|
||||
"docs" = {
|
||||
hostname = "192.168.1.110";
|
||||
user = "root";
|
||||
@@ -28,6 +41,10 @@
|
||||
hostname = "192.168.1.107";
|
||||
user = "root";
|
||||
};
|
||||
"platform-caddy" = {
|
||||
hostname = "192.168.1.65";
|
||||
user = "root";
|
||||
};
|
||||
"pve5070" = {
|
||||
hostname = "192.168.1.130";
|
||||
user = "root";
|
||||
@@ -36,6 +53,10 @@
|
||||
hostname = "192.168.1.36";
|
||||
user = "john";
|
||||
};
|
||||
"z2m-nix" = {
|
||||
hostname = "192.168.1.129";
|
||||
user = "root";
|
||||
};
|
||||
})
|
||||
(lib.mkIf (config.profile == "work") {
|
||||
"ubuntu-nvidia" = {
|
||||
|
||||
Reference in New Issue
Block a user