nixos 26.05

This commit is contained in:
2026-06-01 20:18:41 -05:00
parent 30fcac6172
commit ffef916b3d
7 changed files with 39 additions and 4 deletions

View File

@@ -11,7 +11,7 @@
ipv6 = true;
openFirewall = true;
nssmdns4 = true;
wideArea = true;
wideArea = false;
};
};

View File

@@ -36,6 +36,8 @@
theme.package = pkgs.tokyonight-gtk-theme;
iconTheme.package = pkgs.rose-pine-icon-theme;
iconTheme.name = "rose-pine-moon";
gtk4.theme = config.gtk.theme;
};
services.mpris-proxy.enable = true;

View File

@@ -24,6 +24,8 @@
enable = true;
package = pkgs.firefox;
configPath = "${config.xdg.configHome}/mozilla/firefox";
profiles.nathan = {
search = {
default = "ddg";

View File

@@ -8,7 +8,7 @@
enable = true;
settings = {
theme = "system";
tui.theme = "system";
model = "ollama-remote/qwen3:8b";
provider = {

View File

@@ -43,7 +43,7 @@
grim
slurp
wl-clipboard
xfce.thunar
thunar
brightnessctl
libdbusmenu-gtk3
];

View File

@@ -6,7 +6,7 @@
enable = true;
enableDefaultConfig = false;
/*
matchBlocks = {
"*" = {
@@ -29,6 +29,36 @@
port = 22;
};
"remote" = {
hostname = "esotericbytes.com";
user = "nathan";
identityFile = "${config.home.homeDirectory}/.ssh/id_ed25519";
port = 22;
};
};
*/
settings = {
"*" = {
forwardAgent = false;
addKeysToAgent = "no";
compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
"builder" = {
hostname = "esotericbytes.com";
user = "remote-builder";
identityFile = "${config.home.homeDirectory}/.ssh/id_ed25519";
port = 22;
};
"remote" = {
hostname = "esotericbytes.com";
user = "nathan";

View File

@@ -4,6 +4,7 @@
config = {
programs.yazi = {
enable = true;
shellWrapperName = "y";
};
};
};