initial configuration

This commit is contained in:
2024-03-09 17:18:36 +01:00
commit b51cdf718a
41 changed files with 1741 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# Base16 themes
https://tinted-theming.github.io/base16-gallery/

View File

@@ -0,0 +1,9 @@
{ nix-colors, ... }:
{
imports = [
nix-colors.homeManagerModules.default
];
colorScheme = nix-colors.colorSchemes.da-one-sea;
}

View File

@@ -0,0 +1,35 @@
{ config, nix-colors, pkgs, lib, ... }:
let
inherit
(nix-colors.lib-contrib { inherit pkgs; })
gtkThemeFromScheme;
in
{
gtk = {
enable = true;
theme = {
name = "${config.colorScheme.slug}";
package = gtkThemeFromScheme { scheme = config.colorScheme; };
};
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-dark";
};
};
qt = {
enable = true;
platformTheme = "gtk";
style = {
name = "gtk2";
package = pkgs.qt6Packages.qt6gtk2;
};
};
home.pointerCursor = {
package = pkgs.phinger-cursors;
name = "phinger-cursors";
size = 24;
gtk.enable = true;
};
}