Files
azos/home-manager/home.nix
T
2024-09-07 00:24:08 +03:00

56 lines
1.1 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 = [
outputs.homeManagerModules
];
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;
};
};
programs.home-manager.enable = true;
azos.suites.base.enable = true;
# azos.suites.editor.enable = true;
# azos.suites.dev.enable = true;
azos.name = "Aner Zakobar";
# TODO: Set your username
home = {
username = "aner";
homeDirectory = "/home/aner";
};
home.packages = with pkgs; [
# steam
pandoc
offlineimap #emailing
liberation_ttf #fonts
graphviz #graphing
];
# 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";
}