1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Fix some copy-paste errors

This commit is contained in:
Stefan Ellmauthaler 2022-05-23 15:09:43 +02:00
parent 98dca3a16d
commit f2f91b43d9
Failed to extract signature
3 changed files with 33 additions and 35 deletions

View File

@ -1,7 +1,7 @@
{ config, pkgs, lib, ...}: { config, pkgs, lib, ...}:
{ {
programs.autorandr = { programs.autorandr = {
enable = config.variables.graphical; enable = true;
profiles = { profiles = {
"home" = { "home" = {
fingerprint = { fingerprint = {

View File

@ -19,43 +19,41 @@
"ssh" "ssh"
]; ];
}; };
};
xdg = {
enable = true;
};
programs = {
alacritty = {
enable = true;
settings = {
window = {
decorations = "full";
};
alt_send_esc = true;
};
};
xdg = { direnv = {
enable = true;
enableZshIntegration = true;
};
home-manager = {
enable = true; enable = true;
}; };
programs = { ssh = {
alacritty = { enable = true;
enable = true;
settings = {
window = {
decorations = "full";
};
alt_send_esc = true;
};
};
direnv = {
enable = true;
enableZshIntegration = true;
};
home-manager = { forwardAgent = true;
enable = true; serverAliveInterval = 5;
}; hashKnownHosts = true;
controlMaster = "auto";
ssh = { controlPersist = "60s";
enable = true;
forwardAgent = true;
serverAliveInterval = 5;
hashKnownHosts = true;
controlMaster = "auto";
controlPersist = "60s";
};
go.enable = true;
}; };
}; go.enable = true;
};
} }

View File

@ -233,7 +233,7 @@
#format-prefix-foreground = foreground_altcol; #format-prefix-foreground = foreground_altcol;
format-underline = "#0a6cf5"; format-underline = "#0a6cf5";
label = "%{A1:${pkgs.tray-calendar}/bin/traycalendar --no-tray:}%{A} %date% %time%"; label = "%{A} %date% %time%";
}; };
"module/battery" = { "module/battery" = {
type = "internal/battery"; type = "internal/battery";