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-07-03 22:40:31 +02:00
|
|
|
|
2024-07-03 22:57:23 +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 = {
|
2024-07-03 22:28:11 +02:00
|
|
|
EDITOR = "nvim";
|
2024-06-05 20:52:52 +02:00
|
|
|
};
|
2024-07-01 16:57:23 +02:00
|
|
|
|
2024-07-03 22:28:11 +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
|
|
|
}
|