dotfiles/.config/nix/home/default.nix

22 lines
314 B
Nix

{ ... }:
let
username = "tobi";
in
{
imports = [
./alacritty.nix
./amethyst.nix
./core.nix
./git.nix
./starship.nix
./zsh.nix
];
home = {
username = username;
homeDirectory = "/Users/${username}";
stateVersion = "23.11";
};
programs.home-manager.enable = true;
}