Massive refactoring and migration

Changed some wezterm settings
Refactored some hosted-services
Migrated some services from docker to a nixos service
This commit is contained in:
baduhai 2022-12-23 22:07:13 -03:00
parent a57cf2cd3f
commit 467c028fa4
9 changed files with 190 additions and 142 deletions

View file

@ -8,5 +8,8 @@
sessionVariables = {
EDITOR = "micro";
};
activation.installMicroPlugins = ''
${pkgs.micro}/bin/micro -plugin install filemanager
'';
};
}

View file

@ -43,6 +43,8 @@
enable = true;
extraConfig = ''
local wezterm = require 'wezterm'
local SOLID_LEFT_ARROW = utf8.char(0xe0b2)
local SOLID_RIGHT_ARROW = utf8.char(0xe0b0)
return {
font_size = 10,
color_scheme = 'Twilight (base16)',
@ -53,7 +55,6 @@
}),
initial_cols = 120,
initial_rows = 34,
enable_scroll_bar=true,
}
'';
};