nix/home/default.nix
2024-07-05 19:26:11 +02:00

24 lines
368 B
Nix

{ config, pkgs, inputs, ... }:
{
imports = [
./rofi
./alacritty
./hyprland
./zsh
./gtk
./git
./ags
inputs.ags.homeManagerModules.default
];
home.username = "joy";
home.homeDirectory = "/home/joy";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
home.sessionVariables = {
EDITOR = "nvim";
};
}