Browse Source

hmgr: keychain + nproc-make-opts

dev_01_initial
Heiko Blobner 3 years ago
parent
commit
2cf8d7e4bf
  1. 3
      home-manager/hblobner_at_devvie.nix
  2. 11
      home-manager/modules/keychain.nix

3
home-manager/hblobner_at_devvie.nix

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./modules/fish.nix ./modules/fish.nix
./modules/keychain.nix
./modules/starship.nix ./modules/starship.nix
]; ];
# Home Manager needs a bit of information about you and the # Home Manager needs a bit of information about you and the
@ -59,6 +60,8 @@
EDITOR = "nvim"; EDITOR = "nvim";
PERL5LIB = "/home/hblobner/.gu/lib/perl"; PERL5LIB = "/home/hblobner/.gu/lib/perl";
GU_ENV = "1"; GU_ENV = "1";
MAKE_J_OPTION = "$(nproc)";
MAKEFLAGS = "-j$(nproc)";
}; };
services.gpg-agent = { services.gpg-agent = {

11
home-manager/modules/keychain.nix

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
programs.keychain = {
enable = true;
enableFishIntegration = true;
keys = [
id_ed25519
];
};
}
Loading…
Cancel
Save