nix/home/default.nix
2024-06-09 10:48:58 +02:00

24 lines
382 B
Nix

{ config, pkgs, inputs, ... }:
{
imports = [
./waybar
./alacritty
./hyprland
./zsh
./rofi
./gtk
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";
};
}