diff --git a/home/default.nix b/home/default.nix index 8ae1be7..af130af 100755 --- a/home/default.nix +++ b/home/default.nix @@ -29,14 +29,8 @@ homeDirectory = "/Users/${username}"; stateVersion = "25.11"; - # packages that are not available via programs - packages = with pkgs; [ - raycast - ice-bar - keka - stats - iina - ]; + # packages that are not available via programs and does not need regular updates + packages = with pkgs; []; }; programs.home-manager.enable = true; diff --git a/home/starship.nix b/home/starship.nix index 2d50ffc..b54893c 100755 --- a/home/starship.nix +++ b/home/starship.nix @@ -113,10 +113,7 @@ style = "italic bright-blue"; truncation_symbol = "⋯"; truncation_length = 11; - ignore_branches = [ - "main" - "master" - ]; + ignore_branches = []; only_attached = true; }; diff --git a/modules/apps.nix b/modules/apps.nix index 29553b0..8942643 100644 --- a/modules/apps.nix +++ b/modules/apps.nix @@ -57,6 +57,13 @@ "arc" "codex" "claude-code" + "telegram" + "raycast" + "jordanbaird-ice" + "keka" + "kekaexternalhelper" + "stats" + "iina" ]; }; } diff --git a/modules/system.nix b/modules/system.nix index 3936253..081d2e5 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -178,7 +178,10 @@ }; # Add ability to used TouchID for sudo authentication - security.pam.services.sudo_local.touchIdAuth = true; + security.pam.services.sudo_local = { + touchIdAuth = true; + watchIdAuth = true; + }; programs.zsh = { enable = true;