33 lines
551 B
Nix
33 lines
551 B
Nix
{ pkgs, inputs, outputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.nix-colors.homeManagerModules.default
|
|
./zsh.nix
|
|
./nixvim
|
|
./fonts.nix
|
|
];
|
|
|
|
nixpkgs.overlays = [
|
|
inputs.nur.overlay
|
|
outputs.overlays.additions
|
|
];
|
|
|
|
# Global home packages without config go here (for all hosts and users)
|
|
home.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
ripgrep
|
|
fzf
|
|
eza
|
|
pciutils
|
|
tree
|
|
jq
|
|
coreutils
|
|
btop
|
|
htop
|
|
postgresql
|
|
libqalculate
|
|
;
|
|
};
|
|
home.stateVersion = "23.11";
|
|
}
|