bup
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
.DS_Store
|
||||||
+7
-8
@@ -90,21 +90,20 @@
|
|||||||
|
|
||||||
home.file.".config/1Password/ssh/agent.toml".source = ./config.agent.toml;
|
home.file.".config/1Password/ssh/agent.toml".source = ./config.agent.toml;
|
||||||
|
|
||||||
|
# ~/.config (dotfiles)
|
||||||
|
xdg.enable = true;
|
||||||
|
xdg.configFile."biome.json".source = ./config.biome.json;
|
||||||
|
xdg.configFile."oxlintrc.json".source = ./config.oxlintrc.json;
|
||||||
|
xdg.configFile."ssh.conf".source = ./config.ssh.conf;
|
||||||
|
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableDefaultConfig = false;
|
enableDefaultConfig = false;
|
||||||
|
extraConfig = builtins.readFile ./config.ssh.conf;
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
"thiccdata.io" = {
|
|
||||||
hostname = "192.168.1.45";
|
|
||||||
user = "mbessette";
|
|
||||||
port = 2222;
|
|
||||||
};
|
|
||||||
"*" = {
|
"*" = {
|
||||||
controlMaster = "auto";
|
controlMaster = "auto";
|
||||||
controlPath = "~/.ssh/master-%r@%h:%p";
|
controlPath = "~/.ssh/master-%r@%h:%p";
|
||||||
extraOptions = {
|
|
||||||
"IdentityAgent" = "~/.1password/agent.sock";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
+5
-1
@@ -161,7 +161,8 @@
|
|||||||
|
|
||||||
# Biome config
|
# Biome config
|
||||||
environment.etc."biome.json".source = ./config.biome.json;
|
environment.etc."biome.json".source = ./config.biome.json;
|
||||||
environment.etc."oxlintrc.json".source = ./config.oxlintrc.json;
|
# environment.etc."oxlintrc.json".source = ./config.oxlintrc.json;
|
||||||
|
# environment.etc."ssh_config".source = ./config.ssh.conf;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
ethtool
|
ethtool
|
||||||
@@ -175,6 +176,9 @@
|
|||||||
spotify
|
spotify
|
||||||
faugus-launcher
|
faugus-launcher
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
## Emulators
|
||||||
|
xenia-canary
|
||||||
|
mupen64plus
|
||||||
];
|
];
|
||||||
|
|
||||||
services.flatpak.packages = [
|
services.flatpak.packages = [
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
Host thiccdata.io
|
||||||
|
Port 2222
|
||||||
|
User mbessette
|
||||||
|
HostName 192.168.1.45
|
||||||
|
|
||||||
|
Host germanium
|
||||||
|
Port 22
|
||||||
|
User mbessette
|
||||||
|
HostName 192.168.2.254
|
||||||
|
|
||||||
|
Host *
|
||||||
|
IdentityAgent ~/.1password/agent.sock
|
||||||
@@ -58,14 +58,12 @@
|
|||||||
"https://www.schemastore.org/": true
|
"https://www.schemastore.org/": true
|
||||||
},
|
},
|
||||||
"oxc.enable.oxlint": true,
|
"oxc.enable.oxlint": true,
|
||||||
"oxc.configPath": "/etc/oxlintrc.json",
|
"oxc.configPath": "~/.config/oxlintrc.json",
|
||||||
"oxc.path.oxlint": "/Users/matthew.bessette/.npm-global/bin/oxlint",
|
|
||||||
"oxc.disableNestedConfig": true,
|
"oxc.disableNestedConfig": true,
|
||||||
"js/ts.updateImportsOnFileMove.enabled": "always",
|
"js/ts.updateImportsOnFileMove.enabled": "always",
|
||||||
"js/ts.experimental.useTsgo": true,
|
"js/ts.experimental.useTsgo": true,
|
||||||
"workbench.iconTheme": "vscode-icons",
|
"workbench.iconTheme": "vscode-icons",
|
||||||
|
|
||||||
"update.mode": "none",
|
"update.mode": "none",
|
||||||
|
"i18n-ally.displayLanguage": "en-US",
|
||||||
"i18n-ally.displayLanguage": "en-US"
|
"remote.SSH.configFile": "~/.config/ssh.conf"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user