Added pm01vm01 configuration
This commit is contained in:
@@ -5,20 +5,14 @@ let
|
||||
gtkThemeFromScheme;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
guiTheming.enable = lib.mkEnableOption "Enable GTK and QT theming";
|
||||
};
|
||||
|
||||
imports = [
|
||||
nix-colors.homeManagerModules.default
|
||||
];
|
||||
|
||||
config = {
|
||||
guiTheming.enable = lib.mkDefault true;
|
||||
|
||||
colorScheme = nix-colors.colorSchemes.da-one-sea;
|
||||
|
||||
gtk = lib.mkIf config.guiTheming.enable {
|
||||
gtk = lib.mkIf (config.headless == false) {
|
||||
enable = true;
|
||||
theme = {
|
||||
name = "${config.colorScheme.slug}";
|
||||
@@ -30,7 +24,7 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
qt = lib.mkIf config.guiTheming.enable {
|
||||
qt = lib.mkIf (config.headless == false) {
|
||||
enable = true;
|
||||
platformTheme.name = "gtk";
|
||||
style = {
|
||||
@@ -39,7 +33,7 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
home.pointerCursor = lib.mkIf config.guiTheming.enable {
|
||||
home.pointerCursor = lib.mkIf (config.headless == false) {
|
||||
package = pkgs.phinger-cursors;
|
||||
name = "phinger-cursors-dark";
|
||||
size = 24;
|
||||
|
Reference in New Issue
Block a user