25 lines
423 B
Nix
25 lines
423 B
Nix
{ config, lib, pkgs, outputs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.nix-colors.homeManagerModules.default
|
|
./zsh.nix
|
|
./nixvim
|
|
./fonts.nix
|
|
] ;
|
|
|
|
# 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
|
|
;};
|
|
home.stateVersion = "23.11";
|
|
}
|