23 lines
353 B
Nix
23 lines
353 B
Nix
{ config, lib, pkgs, outputs, ... }:
|
|
{
|
|
imports = [
|
|
./zsh.nix
|
|
./nixvim.nix
|
|
./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
|
|
;};
|
|
home.stateVersion = "23.11";
|
|
}
|