nix-home/home/common-linux.nix
Natsu Kagami c6c9af178f
Minor CLI tools change: use htop-vim instead of bottom, add psmisc
- psmisc gives killall and pstree
- bottom is just pretty inconvenient when it comes to searching, and htop-vim beats it
2022-07-19 15:42:42 -04:00

29 lines
685 B
Nix

{ pkgs, config, lib, ... }:
with lib; {
imports = [
./modules/linux/graphical
./modules/X11/xfce4-notifyd.nix
];
config = (mkIf (strings.hasSuffix "linux" pkgs.system) {
home.packages = with pkgs; [
unfree.vivaldi
psmisc # killall and friends
];
## Gnome-keyring
services.gnome-keyring = {
enable = true;
components = [ "pkcs11" "secrets" ];
};
services.gpg-agent.enable = true;
services.gpg-agent.pinentryFlavor = "curses";
services.gpg-agent.enableSshSupport = true;
# Git "safe-directory"
programs.git.extraConfig.safe.directory = [
"${config.home.homeDirectory}/.config/nixpkgs"
];
});
}