nix/home/default.nix

27 lines
486 B
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{ config, pkgs, inputs, ... }:
{
imports = [
2024-06-24 20:39:16 +02:00
./rofi
2024-07-02 22:10:44 +02:00
./alacritty
./hyprland
./zsh
./gtk
./git
./ags
inputs.nix-colors.homeManagerModules.default
inputs.ags.homeManagerModules.default
];
2024-06-24 16:21:10 +02:00
2024-06-05 20:52:52 +02:00
home.username = "joy";
home.homeDirectory = "/home/joy";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
home.sessionVariables = {
EDITOR = "vim";
};
2024-07-01 16:57:23 +02:00
2024-06-24 20:39:16 +02:00
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
2024-06-05 20:52:52 +02:00
}