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