Merge branch 'main' of ssh://codeberg.org/dnscio/nix-config

This commit is contained in:
Dennis 2025-09-04 09:54:37 +02:00
commit ab3f902478
3 changed files with 19 additions and 10 deletions

View file

@ -157,7 +157,7 @@
}; };
loginwindow = { loginwindow = {
LoginwindowText = "\\U03bb dnsc-air (powered by Nix)"; LoginwindowText = "λ dnsc-air (powered by nix-darwin)";
}; };
menuExtraClock = { menuExtraClock = {

View file

@ -5,6 +5,7 @@
allowedHosts = "home.dnsc.io"; allowedHosts = "home.dnsc.io";
settings = { settings = {
theme = "dark"; theme = "dark";
maxBookmarkGroupColumns = 2;
headerStyle = "boxedWidgets"; headerStyle = "boxedWidgets";
background = { background = {
image = "https://i.ibb.co/v6FjzW5V/winter.png"; image = "https://i.ibb.co/v6FjzW5V/winter.png";
@ -12,6 +13,22 @@
brightness = 50; brightness = 50;
}; };
}; };
widgets = [
{
resources = {
cpu = true;
cputemp = true;
units = "metric";
};
}
{
resources = {
memory = true;
uptime = true;
network = true;
};
}
];
services = [ services = [
{ {
"VPS" = [ "VPS" = [
@ -62,7 +79,7 @@
{ {
Hosting = [ Hosting = [
{ {
Fastmail = [ Porkbun = [
{ {
abbr = "PB"; abbr = "PB";
href = "https://porkbun.com/account/domainsSpeedy"; href = "https://porkbun.com/account/domainsSpeedy";

View file

@ -1,8 +0,0 @@
return {
"vimwiki/vimwiki",
dependencies = { "freitass/todo.txt-vim" },
init = function()
vim.g.vimwiki_list = { { path = "~/notes", syntax = "markdown", ext = "md" } }
vim.g.vimwiki_global_ext = 0
end,
}