nix/home/default.nix
2024-07-04 08:00:47 +02:00

36 lines
673 B
Nix

{ config, pkgs, inputs, ... }:
{
imports = [
./rofi
./alacritty
./hyprland
./zsh
./gtk
./git
./ags
inputs.nix-colors.homeManagerModules.default
inputs.ags.homeManagerModules.default
];
home.username = "joy";
home.homeDirectory = "/home/joy";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
home.sessionVariables = {
EDITOR = "nvim";
};
# basically copy the whole nvchad that is fetched from github to ~/.config/nvim
xdg.configFile."nvim/" = {
source = (pkgs.callPackage ./nvchad/default.nix{}).nvchad;
};
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
}