initial configuration
This commit is contained in:
2
modules/home/theme/README.md
Normal file
2
modules/home/theme/README.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# Base16 themes
|
||||
https://tinted-theming.github.io/base16-gallery/
|
9
modules/home/theme/blueish.nix
Normal file
9
modules/home/theme/blueish.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ nix-colors, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
nix-colors.homeManagerModules.default
|
||||
];
|
||||
|
||||
colorScheme = nix-colors.colorSchemes.da-one-sea;
|
||||
}
|
35
modules/home/theme/default.nix
Normal file
35
modules/home/theme/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user