dotfiles/.config/nix/home/default.nix
2023-12-15 08:39:12 +01:00

21 lines
300 B
Nix

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