summaryrefslogtreecommitdiff
path: root/users/seth/programs
diff options
context:
space:
mode:
authorseth <[email protected]>2024-01-24 20:38:37 -0500
committerseth <[email protected]>2024-01-24 20:38:37 -0500
commitbc5ae75eb21567edae47fcaae4921b0671300f80 (patch)
treed18eb4c144a03ed12cd387a35cb5f35031017607 /users/seth/programs
parentbe32ea8fe782fb571982a8c4de5ebd34b4b3b810 (diff)
seth/programs+shell: remove some unneeded options
Diffstat (limited to 'users/seth/programs')
-rw-r--r--users/seth/programs/gpg.nix5
-rw-r--r--users/seth/programs/starship/default.nix2
2 files changed, 2 insertions, 5 deletions
diff --git a/users/seth/programs/gpg.nix b/users/seth/programs/gpg.nix
index 3fba0d3..ff94e36 100644
--- a/users/seth/programs/gpg.nix
+++ b/users/seth/programs/gpg.nix
@@ -1,5 +1,4 @@
{
- config,
lib,
pkgs,
osConfig,
@@ -10,10 +9,6 @@
services.gpg-agent = lib.mkIf pkgs.stdenv.isLinux {
enable = true;
- enableBashIntegration = config.programs.bash.enable;
- enableFishIntegration = config.programs.fish.enable;
- enableZshIntegration = config.programs.zsh.enable;
-
pinentryFlavor =
if osConfig ? programs
then osConfig.programs.gnupg.agent.pinentryFlavor or "curses"
diff --git a/users/seth/programs/starship/default.nix b/users/seth/programs/starship/default.nix
index 099761b..a1b9104 100644
--- a/users/seth/programs/starship/default.nix
+++ b/users/seth/programs/starship/default.nix
@@ -1,8 +1,10 @@
{
programs.starship = {
enable = true;
+
enableBashIntegration = false;
enableZshIntegration = false;
+
settings =
{
format = "$all";