2021-06-15 15:51:44 -04:00

13 lines
209 B
Nix

{ config, pkgs, ... }:
{
imports = [
../../modules/home-manager.nix
../../modules/zsh.nix
../../modules/dev.nix
../../modules/fonts.nix
];
home.packages = with pkgs; [
neofetch
];
}