From 85fb3f825170235c368eafe5e7c0d015d3cf138a Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 8 Sep 2023 21:13:04 -0400 Subject: [PATCH] users/profiles: remove unused nnn and pass --- users/profiles/nnn.nix | 11 ----------- users/profiles/pass.nix | 24 ------------------------ 2 files changed, 35 deletions(-) delete mode 100644 users/profiles/nnn.nix delete mode 100644 users/profiles/pass.nix diff --git a/users/profiles/nnn.nix b/users/profiles/nnn.nix deleted file mode 100644 index b218927..0000000 --- a/users/profiles/nnn.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ pkgs, ... }: { - programs.nnn = { - enable = true; - bookmarks = { }; - extraPackages = with pkgs; [ - ffmpegthumbnailer - mediainfo - sxiv - ]; - }; -} diff --git a/users/profiles/pass.nix b/users/profiles/pass.nix deleted file mode 100644 index cad456f..0000000 --- a/users/profiles/pass.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ pkgs, config, ... }: { - programs = { - password-store = { - enable = true; - package = pkgs.pass; - settings = { - PASSWORD_STORE_DIR = "${config.xdg.dataHome}/password-store"; - PASSWORD_STORE_KEY = "2C0BB53DFA3BB79F64B0ADCAAA0E1F926FAF03C0"; # Named "Infinidoge (Master Password)" - PASSWORD_STORE_GENERATED_LENGTH = "20"; - PASSWORD_STORE_CLIP_TIME = "60"; - }; - }; - - git.extraConfig.credential.helper = "${pkgs.gitAndTools.pass-git-helper}/bin/pass-git-helper"; - }; - - - home.file."${config.xdg.configHome}/pass-git-helper/git-pass-mapping.ini".text = '' - [gitlab.com*] - target=dev/gitlab.com/infinidoge_api - ''; - - services.password-store-sync.enable = true; -}