13 lines
166 B
Nix
13 lines
166 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
../../modules/git.nix
|
|
../../modules/zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
neovim
|
|
];
|
|
|
|
home.stateVersion = "21.05";
|
|
}
|