diff --git a/README.md b/README.md index 7d13298..2d6911b 100644 --- a/README.md +++ b/README.md @@ -47,20 +47,6 @@ 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 @@ -94,7 +80,6 @@ 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 diff --git a/modules/home-manager-modules/programs/vscode/conventionalCommits.nix b/modules/home-manager-modules/programs/vscode/conventionalCommits.nix index b667c27..5bc8124 100644 --- a/modules/home-manager-modules/programs/vscode/conventionalCommits.nix +++ b/modules/home-manager-modules/programs/vscode/conventionalCommits.nix @@ -19,10 +19,6 @@ 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 { @@ -31,8 +27,6 @@ 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; }; }; }));