nix_files/hosts/t0urn3s0l/home.nix

58 lines
1 KiB
Nix
Raw Permalink Normal View History

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-09 21:05:34 +00:00
../../commons/programs/waybar.nix
2025-02-13 23:49:07 +00:00
../../commons/programs/swaync.nix
2025-02-06 14:18:02 +00:00
];
2025-02-06 23:17:32 +00:00
qt = {
enable = true;
2025-02-13 23:49:07 +00:00
platformTheme.name = "gtk";
2025-02-06 23:17:32 +00: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 21:05:34 +00:00
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
};
2025-02-27 20:10:46 +00:00
programs.git = {
enable = true;
extraConfig = {
credential.helper = "libsecret";
};
};
2025-02-06 10:14:15 +00:00
programs.home-manager.enable = true;
}