HermitNix_DEPRECATED/Users/Sara/homeMinimal.nix

23 lines
359 B
Nix
Raw Normal View History

2023-11-06 19:14:02 +00:00
{ config, pkgs, ... }:
{
home = {
stateVersion = "23.05";
username = "sara";
homeDirectory = "/home/sara";
packages = with pkgs; [
# Base
thefuck
];
};
imports = [
# Home-manager configured program files
./neovim.nix
./hyfetch.nix
./zsh.nix
./git.nix
];
programs.home-manager.enable = true;
}