nix/home/default.nix

25 lines
458 B
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{ config, pkgs, inputs, ... }:
{
2024-06-10 09:38:05 +02:00
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
2024-06-05 20:52:52 +02:00
imports = [
./waybar
./alacritty
./hyprland
./zsh
./rofi
./gtk
2024-06-12 06:49:44 +02:00
./git
2024-06-05 20:52:52 +02:00
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";
};
}