infra/nix/home-manager/profiles/common.nix

55 lines
1,014 B
Nix
Raw Normal View History

{ pkgs
, ...
}:
let
in {
# TODO: re-enable this with the appropriate version
# programs.home-manager.enable = true;
# programs.home-manager.path = https://github.com/rycee/home-manager/archive/445c0b1482c38172a9f8294ee16a7ca7462388e5.tar.gz;
nixpkgs.overlays = builtins.attrValues (import ../../overlays);
nixpkgs.config = {
allowBroken = true;
allowUnfree = true;
};
home.keyboard = {
layout = "us";
variant = "altgr-intl";
options = [
"nodeadkeys"
# "caps:swapescape"
];
};
programs.direnv.enable = true;
2020-02-10 14:09:04 +01:00
services.lorri.enable = true;
home.sessionVariables = {
NIXPKGS_ALLOW_UNFREE = "1";
# Don't create .pyc files.
PYTHONDONTWRITEBYTECODE = "1";
};
programs.command-not-found.enable = true;
programs.fzf.enable = true;
2018-11-03 19:33:58 +01:00
home.packages =
[] ++ (with pkgs; [
2018-11-04 14:01:21 +01:00
# git helpers
git-crypt
vcsh
2018-11-03 19:33:58 +01:00
# Authentication
cacert
openssl
mkpasswd
just
2019-01-26 13:40:07 +01:00
ripgrep
2020-11-25 21:52:02 +01:00
du-dust
2018-11-03 19:33:58 +01:00
]);
}