From 5dedf4f314911d7c834c531fa98be05f61f1587b Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Sat, 8 Nov 2025 11:39:17 -0600 Subject: [PATCH 1/3] chore: service to list of services that need to be added --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2d6911b..7f49aa8 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ nix multi user, multi system, configuration with `sops` secret management, `home ## Services - [ ] ntfy service for unified push +- [ ] signal socket server - [ ] vikunja service for project management - [ ] Penpot services (need to make this custom) - [ ] minecraft server with old world file From 81a9ed31548c9842f4f051b6c19656c4cd032382 Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Sun, 9 Nov 2025 02:21:08 -0600 Subject: [PATCH 2/3] doc: added documentation tasks to README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 2d6911b..e16fe0e 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,20 @@ nix multi user, multi system, configuration with `sops` secret management, `home # Tasks: +## Documentation +- [ ] project layout +- [ ] users file structure +- [ ] reverse proxy design + - public service compatibility + - vpn based services compatibility +- [ ] the choice of impermanence +- [ ] storage module design + - base impermanence compatibility and structure reason + - plans for home manager datasets + - plans for auto systemd service datasets +- [ ] plans to migrate to some kind of acl structure for user management +- [ ] plans to migrate from flakes to npins + ## Chores: - [ ] test out crab hole service From 46cd54e9bac9c0fd975f0ecbcf6a2dd90d648e3a Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Sun, 9 Nov 2025 02:27:00 -0600 Subject: [PATCH 3/3] feat: added option for prompt footer in conventional commit plugin --- .../programs/vscode/conventionalCommits.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/home-manager-modules/programs/vscode/conventionalCommits.nix b/modules/home-manager-modules/programs/vscode/conventionalCommits.nix index 5bc8124..b667c27 100644 --- a/modules/home-manager-modules/programs/vscode/conventionalCommits.nix +++ b/modules/home-manager-modules/programs/vscode/conventionalCommits.nix @@ -19,6 +19,10 @@ in { gitmoji = lib.mkEnableOption "should emoji be prompted for as a part of the commit message./"; promptScopes = lib.mkEnableOption "prompting for scopes in conventional commits"; + + promptFooter = lib.mkEnableOption "prompting for footer in conventional commits"; + + showNewVersionNotes = lib.mkEnableOption "showing new version notes for conventional commits"; }; }; config = lib.mkIf config.extraExtensions.conventionalCommits.enable { @@ -27,6 +31,8 @@ in { userSettings = { "conventionalCommits.gitmoji" = config.extraExtensions.conventionalCommits.gitmoji; "conventionalCommits.promptScopes" = config.extraExtensions.conventionalCommits.promptScopes; + "conventionalCommits.promptFooter" = config.extraExtensions.conventionalCommits.promptFooter; + "conventionalCommits.showNewVersionNotes" = config.extraExtensions.conventionalCommits.showNewVersionNotes; }; }; }));