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

83 lines
1.5 KiB
Nix
Raw Normal View History

{pkgs, ...}: {
# 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;
imports = [
../programs/zsh.nix
];
nixpkgs.config = {
allowBroken = false;
allowUnfree = true;
2023-02-07 18:23:51 +01:00
permittedInsecurePackages = [];
};
2023-02-07 18:23:51 +01:00
nix.settings.experimental-features = ["nix-command" "flakes" "impure-derivations" "ca-derivations" "recursive-nix"];
nix.settings.sandbox = "relaxed";
home.keyboard = {
layout = "us";
variant = "altgr-intl";
2022-10-31 11:04:38 +01:00
options = [
# nodeadkeys doesn't make sense with us layout: see https://man.archlinux.org/man/xkeyboard-config.7 for valid options
# "nodeadkeys"
2022-10-31 11:04:38 +01:00
# "caps:swapescape"
];
};
xdg.enable = true;
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.
home.sessionVariables.PYTHONDONTWRITEBYTECODE = "1";
programs.command-not-found.enable = true;
programs.fzf.enable = true;
2018-11-03 19:33:58 +01:00
2023-02-07 18:23:51 +01:00
home.packages =
[]
++ (with pkgs; [
htop
2023-02-07 18:23:51 +01:00
vcsh
2023-02-07 18:23:51 +01:00
# Authentication
cacert
openssl
mkpasswd
just
ripgrep
du-dust
elfutils
exfat
file
tree
pwgen
proot
parted
pv
tmux
wget
curl
# git helpers
git-crypt
gitFull
pastebinit
gist
mr
usbutils
pciutils
2023-02-07 18:23:51 +01:00
]);
home.stateVersion = "22.05";
}