nix/home/default.nix
2024-06-12 06:49:44 +02:00

25 lines
458 B
Nix

{ config, pkgs, inputs, ... }:
{
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
imports = [
./waybar
./alacritty
./hyprland
./zsh
./rofi
./gtk
./git
inputs.nix-colors.homeManagerModules.default
];
home.username = "joy";
home.homeDirectory = "/home/joy";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
home.sessionVariables = {
EDITOR = "vim";
};
}