Home-Manager_dotfiles/home.nix

24 lines
383 B
Nix
Raw Normal View History

2023-11-17 09:52:27 +00:00
{ 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;
}