Home-Manager_dotfiles/home.nix

24 lines
383 B
Nix

{ config, pkgs, ... }:
{
home = {
stateVersion = "23.05";
username = "hertog";
homeDirectory = "/home/hertog";
packages = with pkgs; [
];
};
imports = [
# Home-manager configured program files
./neovim.nix
./helix.nix
./hyfetch.nix
./zsh.nix
./dconf.nix
./sway.nix
./git.nix
];
programs.home-manager.enable = true;
}