nix_files/hosts/t0urn3s0l/home.nix
2025-02-08 00:20:47 +01:00

39 lines
737 B
Nix

{ config, pkgs, lib, inputs, ... }:
{
home.username = "zuma";
home.homeDirectory = "/home/zuma";
home.stateVersion = "24.11"; # Please read the comment before changing.
imports = [
../../commons/programs/hyprland.nix
../../commons/programs/zsh.nix
../../commons/programs/neovim.nix
../../commons/programs/kitty.nix
];
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";
};
};
programs.home-manager.enable = true;
}