fix foot config
This commit is contained in:
parent
894e3eb895
commit
df65b08cd5
|
@ -23,6 +23,7 @@ in
|
|||
modules/devenv.nix
|
||||
modules/overlay.nix
|
||||
modules/zsh.nix
|
||||
modules/foot.nix
|
||||
] ++ lib.optionals (config.networking.hostName == "jimbo") [
|
||||
modules/kanshi.nix
|
||||
] ++ lib.optionals (config.networking.hostName == "milhouse") [
|
||||
|
@ -107,9 +108,9 @@ in
|
|||
studio-link
|
||||
#george-decker
|
||||
|
||||
] ++ lib.optionals (sysConfig.networking.hostname == "jimbo") [
|
||||
] ++ lib.optionals (config.networking.hostName == "jimbo") [
|
||||
networkmanager
|
||||
] ++ lib.optionals (sysConfig.networking.hostname == "milhouse") [
|
||||
] ++ lib.optionals (config.networking.hostName == "milhouse") [
|
||||
networkmanager
|
||||
];
|
||||
home.stateVersion = "21.11";
|
||||
|
@ -287,4 +288,5 @@ in
|
|||
# Enable blueman-applet when the machine has bluetooth enabled
|
||||
services.blueman-applet.enable = config.hardware.bluetooth.enable == true;
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config
|
||||
{ nixosConfig
|
||||
, ...
|
||||
}:
|
||||
let
|
||||
|
@ -10,7 +10,7 @@ in
|
|||
settings = {
|
||||
main = {
|
||||
term = "xterm-256color";
|
||||
font = fontSize config.my.highDPI;
|
||||
font = fontSize nixosConfig.my.highDPI;
|
||||
};
|
||||
scrollback = { lines = 100000; };
|
||||
colors = {
|
||||
|
|
Loading…
Reference in a new issue