Cy Pokhrel
448053ae5d
override anki (successfully this time) install evolution and nix-index use home-manager to configure gtk and qt theme and update a bunch of stuff
31 lines
594 B
Nix
31 lines
594 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "yt";
|
|
home.homeDirectory = "/home/yt";
|
|
home.stateVersion = "24.05";
|
|
programs.home-manager.enable = true;
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme.name = "gtk";
|
|
style.name = "adwaita-dark";
|
|
style.package = pkgs.adwaita-qt;
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
cursorTheme = {
|
|
package = pkgs.bibata-cursors;
|
|
name = "Bibata-Modern";
|
|
};
|
|
theme = {
|
|
package = pkgs.adw-gtk3;
|
|
name = "adw-gtk3-dark";
|
|
};
|
|
iconTheme = {
|
|
package = pkgs.adwaita-icon-theme;
|
|
name = "Adwaita";
|
|
};
|
|
};
|
|
}
|