.dotfiles/nix/home.nix

8 lines
135 B
Nix

{ pkgs, ... }: {
home = {
stateVersion = "24.05";
home.packages = with pkgs; [
neovim
];
};
}