Files
azos/home-manager/home.nix
T
2024-08-23 05:59:04 +03:00

59 lines
1.2 KiB
Nix

# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./base
];
nixpkgs = {
overlays = [
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.unstable-packages
];
config = {
allowUnfree = true;
# Workaround for https://github.com/nix-community/home-manager/issues/2942
allowUnfreePredicate = _: true;
};
};
azos.gpgagent.enable = true;
azos.name = "Aner Zakobar";
# TODO: Set your username
home = {
username = "aner";
homeDirectory = "/home/aner";
};
home.packages = with pkgs; [
# steam
emacs
pandoc
offlineimap #emailing
liberation_ttf #fonts
graphviz #graphing
(python3.withPackages (python-pkgs: [
python-pkgs.graphviz
python-pkgs.pygments
]))
];
programs.home-manager.enable = true;
programs.git.enable = true;
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "23.05";
}