users/profiles: remove unused nnn and pass

This commit is contained in:
Infinidoge 2023-09-08 21:13:04 -04:00
parent 18a1de2fe5
commit 85fb3f8251
2 changed files with 0 additions and 35 deletions

View file

@ -1,11 +0,0 @@
{ pkgs, ... }: {
programs.nnn = {
enable = true;
bookmarks = { };
extraPackages = with pkgs; [
ffmpegthumbnailer
mediainfo
sxiv
];
};
}

View file

@ -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;
}