From a58cc8bf8d3cfcbabba26721228a449521bd062e Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 28 Aug 2025 21:03:06 +0200 Subject: [PATCH 1/7] updates homepage config --- modules/homepage/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/homepage/default.nix b/modules/homepage/default.nix index 6c92580..a36c671 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"; From 3818e5ba5b816c0dd464dd9478f5c7e49f987f19 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 28 Aug 2025 21:09:50 +0200 Subject: [PATCH 2/7] updates bookmarks and adds widgets --- modules/homepage/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/modules/homepage/default.nix b/modules/homepage/default.nix index a36c671..6f3dd15 100644 --- a/modules/homepage/default.nix +++ b/modules/homepage/default.nix @@ -13,6 +13,18 @@ brightness = 50; }; }; + widgets = [ + { + resources = { + cpu = true; + cputemp = true; + memory = true; + uptime = true; + units = "imperial"; + network = true; + }; + } + ]; services = [ { "VPS" = [ @@ -63,7 +75,7 @@ { Hosting = [ { - Fastmail = [ + Porkbun = [ { abbr = "PB"; href = "https://porkbun.com/account/domainsSpeedy"; From 27b742a4b2e28ce648c07c10cabaf6e5e24c4448 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 28 Aug 2025 21:14:36 +0200 Subject: [PATCH 3/7] updates homepage widgets --- modules/homepage/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/homepage/default.nix b/modules/homepage/default.nix index 6f3dd15..ab06e3a 100644 --- a/modules/homepage/default.nix +++ b/modules/homepage/default.nix @@ -18,9 +18,13 @@ resources = { cpu = true; cputemp = true; + units = "metric"; + }; + } + { + resources = { memory = true; uptime = true; - units = "imperial"; network = true; }; } From f0ee7966a0e9f69c4165c248b0a4cb3db72cf051 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 3 Sep 2025 19:23:39 +0200 Subject: [PATCH 4/7] adds emacs to dnsc-air --- hosts/dnsc-air/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/dnsc-air/default.nix b/hosts/dnsc-air/default.nix index 809f592..f88cded 100644 --- a/hosts/dnsc-air/default.nix +++ b/hosts/dnsc-air/default.nix @@ -60,6 +60,7 @@ fnm imagemagick restic + emacs-macport ]; # Homebrew From 6892190b0dedc72c02bb66088fdc0c136e09e2c6 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 3 Sep 2025 20:53:08 +0200 Subject: [PATCH 5/7] adds coreutils and fixes login window text --- hosts/dnsc-air/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/dnsc-air/default.nix b/hosts/dnsc-air/default.nix index f88cded..093c28b 100644 --- a/hosts/dnsc-air/default.nix +++ b/hosts/dnsc-air/default.nix @@ -61,6 +61,7 @@ imagemagick restic emacs-macport + coreutils-prefixed ]; # Homebrew @@ -158,7 +159,7 @@ }; loginwindow = { - LoginwindowText = "\\U03bb dnsc-air (powered by Nix)"; + LoginwindowText = "λ dnsc-air (powered by nix-darwin)"; }; menuExtraClock = { From e9fadd09d97ace5819faf417f933709e209ab649 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 3 Sep 2025 21:09:55 +0200 Subject: [PATCH 6/7] removes coreutils and emacs --- hosts/dnsc-air/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/hosts/dnsc-air/default.nix b/hosts/dnsc-air/default.nix index 093c28b..8f2a68a 100644 --- a/hosts/dnsc-air/default.nix +++ b/hosts/dnsc-air/default.nix @@ -60,8 +60,6 @@ fnm imagemagick restic - emacs-macport - coreutils-prefixed ]; # Homebrew From 0f334d771dea16c95c5b9cabafd455530bf3c1c8 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 3 Sep 2025 21:17:49 +0200 Subject: [PATCH 7/7] removes vimwiki config --- modules/nvim/config/lua/plugins/notes.lua | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 modules/nvim/config/lua/plugins/notes.lua 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, -}