nix_files/hosts/t0urn3s0l/home.nix

58 lines
1 KiB
Nix
Raw Normal View History

2025-02-06 15:18:02 +01:00
{ config, pkgs, lib, inputs, ... }:
2025-02-06 11:14:15 +01:00
{
home.username = "zuma";
home.homeDirectory = "/home/zuma";
home.stateVersion = "24.11"; # Please read the comment before changing.
2025-02-06 15:18:02 +01:00
imports = [
2025-02-08 00:20:47 +01:00
../../commons/programs/hyprland.nix
../../commons/programs/zsh.nix
../../commons/programs/neovim.nix
../../commons/programs/kitty.nix
2025-02-09 22:05:34 +01:00
../../commons/programs/waybar.nix
2025-02-14 00:49:07 +01:00
../../commons/programs/swaync.nix
2025-02-06 15:18:02 +01:00
];
2025-02-07 00:17:32 +01:00
qt = {
enable = true;
2025-02-14 00:49:07 +01:00
platformTheme.name = "gtk";
2025-02-07 00:17:32 +01:00
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-09 22:05:34 +01:00
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
};
2025-02-27 21:10:46 +01:00
programs.git = {
enable = true;
extraConfig = {
credential.helper = "libsecret";
};
};
2025-02-06 11:14:15 +01:00
programs.home-manager.enable = true;
}