initial commit

This commit is contained in:
2026-04-19 14:58:51 -03:00
parent 3ac4eb5503
commit 5f85583bd0
32 changed files with 2222 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
{
pkgs,
config,
lib,
...
}:
{
imports = [
./conf/HM/imp.nix
];
home = {
username = "gui";
homeDirectory = "/home/gui";
stateVersion = "25.11";
};
programs = {
home-manager.enable = true;
fish.enable = true;
};
nixpkgs.config.allowUnfree = true;
mods = {
kitty.enable = true;
flakePath = "/self";
};
gtk = {
enable = true;
theme = {
name = "Adwaita-dark";
package = pkgs.gnome-themes-extra;
};
cursorTheme = {
name = "Adwaita";
# package = pkgs.Adwaita-awcursors;
};
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = 1;
"gtk-cursor-theme-name" = "Adwaita";
};
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
Settings = "gtk-cursor-theme-name=Adwaita";
};
};
qt = {
enable = true;
style = {
name = "adwaita-dark";
};
};
xdg.configFile."gtk-3.0/settings.ini".force = true;
xdg.configFile."gtk-4.0/settings.ini".force = true;
}