This commit is contained in:
Matthew Bessette
2026-07-26 15:16:15 -04:00
parent e50ca8089d
commit cadf6dd263
6 changed files with 28 additions and 14 deletions
Vendored
BIN
View File
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
.DS_Store
+7 -8
View File
@@ -89,22 +89,21 @@
'' ;
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 = {
enable = true;
enableDefaultConfig = false;
extraConfig = builtins.readFile ./config.ssh.conf;
matchBlocks = {
"thiccdata.io" = {
hostname = "192.168.1.45";
user = "mbessette";
port = 2222;
};
"*" = {
controlMaster = "auto";
controlPath = "~/.ssh/master-%r@%h:%p";
extraOptions = {
"IdentityAgent" = "~/.1password/agent.sock";
};
};
};
};
+5 -1
View File
@@ -161,7 +161,8 @@
# Biome config
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; [
ethtool
@@ -175,6 +176,9 @@
spotify
faugus-launcher
signal-desktop
## Emulators
xenia-canary
mupen64plus
];
services.flatpak.packages = [
+12
View File
@@ -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
+3 -5
View File
@@ -58,14 +58,12 @@
"https://www.schemastore.org/": true
},
"oxc.enable.oxlint": true,
"oxc.configPath": "/etc/oxlintrc.json",
"oxc.path.oxlint": "/Users/matthew.bessette/.npm-global/bin/oxlint",
"oxc.configPath": "~/.config/oxlintrc.json",
"oxc.disableNestedConfig": true,
"js/ts.updateImportsOnFileMove.enabled": "always",
"js/ts.experimental.useTsgo": true,
"workbench.iconTheme": "vscode-icons",
"update.mode": "none",
"i18n-ally.displayLanguage": "en-US"
"i18n-ally.displayLanguage": "en-US",
"remote.SSH.configFile": "~/.config/ssh.conf"
}