diff --git a/hosts/dnsc-air/default.nix b/hosts/dnsc-air/default.nix index 809f592..8f2a68a 100644 --- a/hosts/dnsc-air/default.nix +++ b/hosts/dnsc-air/default.nix @@ -157,7 +157,7 @@ }; loginwindow = { - LoginwindowText = "\\U03bb dnsc-air (powered by Nix)"; + LoginwindowText = "λ dnsc-air (powered by nix-darwin)"; }; menuExtraClock = { diff --git a/modules/homepage/default.nix b/modules/homepage/default.nix index 6c92580..ab06e3a 100644 --- a/modules/homepage/default.nix +++ b/modules/homepage/default.nix @@ -5,6 +5,7 @@ allowedHosts = "home.dnsc.io"; settings = { theme = "dark"; + maxBookmarkGroupColumns = 2; headerStyle = "boxedWidgets"; background = { image = "https://i.ibb.co/v6FjzW5V/winter.png"; @@ -12,6 +13,22 @@ brightness = 50; }; }; + widgets = [ + { + resources = { + cpu = true; + cputemp = true; + units = "metric"; + }; + } + { + resources = { + memory = true; + uptime = true; + network = true; + }; + } + ]; services = [ { "VPS" = [ @@ -62,7 +79,7 @@ { Hosting = [ { - Fastmail = [ + Porkbun = [ { abbr = "PB"; href = "https://porkbun.com/account/domainsSpeedy"; diff --git a/modules/nvim/config/lua/plugins/notes.lua b/modules/nvim/config/lua/plugins/notes.lua deleted file mode 100644 index 1f0a738..0000000 --- a/modules/nvim/config/lua/plugins/notes.lua +++ /dev/null @@ -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, -}