2025-02-06 14:18:02 +00:00
|
|
|
{ config, pkgs, lib, inputs, ... }:
|
2025-02-06 10:14:15 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
home.username = "zuma";
|
|
|
|
home.homeDirectory = "/home/zuma";
|
|
|
|
|
|
|
|
home.stateVersion = "24.11"; # Please read the comment before changing.
|
|
|
|
|
2025-02-06 14:18:02 +00:00
|
|
|
imports = [
|
2025-02-07 23:20:47 +00:00
|
|
|
../../commons/programs/hyprland.nix
|
|
|
|
../../commons/programs/zsh.nix
|
|
|
|
../../commons/programs/neovim.nix
|
|
|
|
../../commons/programs/kitty.nix
|
2025-02-06 14:18:02 +00:00
|
|
|
];
|
|
|
|
|
2025-02-06 23:17:32 +00:00
|
|
|
qt = {
|
|
|
|
enable = true;
|
|
|
|
platformTheme = "gtk";
|
|
|
|
style= {
|
|
|
|
name = "Dracula";
|
|
|
|
package = pkgs.dracula-theme;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
gtk = {
|
|
|
|
enable = true;
|
|
|
|
theme = {
|
|
|
|
package = pkgs.dracula-theme;
|
|
|
|
name = "Dracula";
|
|
|
|
};
|
|
|
|
|
|
|
|
iconTheme = {
|
|
|
|
package = pkgs.dracula-icon-theme;
|
|
|
|
name = "Dracula";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2025-02-06 10:14:15 +00:00
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|