mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
feat: moved gtk to higher level
This commit is contained in:
parent
0e40067762
commit
5269981d5d
6 changed files with 0 additions and 87 deletions
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
pkgs,
|
|
||||||
flake,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
inherit (flake.config.aesthetics.themes) cursor;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
name = "catppuccin-macchiato-dark-cursors";
|
|
||||||
package = pkgs.catppuccin-cursors.macchiatoDark;
|
|
||||||
size = cursor.size;
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
extraConfig = {
|
|
||||||
gtk-application-prefer-dark-theme = true;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{ pkgs, flake, ... }:
|
|
||||||
let
|
|
||||||
inherit (flake.config.aesthetics.themes)
|
|
||||||
cursor
|
|
||||||
;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
gtk.enable = true;
|
|
||||||
x11.enable = true;
|
|
||||||
name = "catppuccin-mocha-dark-cursors";
|
|
||||||
package = pkgs.catppuccin-cursors.macchiatoDark;
|
|
||||||
size = cursor.size;
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
package = pkgs.catppuccin-papirus-folders.override {
|
|
||||||
flavor = "macchiato";
|
|
||||||
accent = "mauve";
|
|
||||||
};
|
|
||||||
name = "Papirus-Dark";
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
package = pkgs.catppuccin-gtk.override {
|
|
||||||
size = "compact";
|
|
||||||
variant = "macchiato";
|
|
||||||
accents = [
|
|
||||||
"mauve"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
name = "catppuccin-macchiato-mauve-compact";
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{ pkgs, flake, ... }:
|
|
||||||
let
|
|
||||||
configPath = ./config;
|
|
||||||
cursorThemePath = import (configPath + /cursorTheme.nix) {
|
|
||||||
inherit
|
|
||||||
flake
|
|
||||||
pkgs
|
|
||||||
;
|
|
||||||
};
|
|
||||||
iconThemePath = import (configPath + /iconTheme.nix) {
|
|
||||||
inherit
|
|
||||||
pkgs
|
|
||||||
;
|
|
||||||
};
|
|
||||||
themePath = import (configPath + /theme.nix) {
|
|
||||||
inherit
|
|
||||||
pkgs
|
|
||||||
;
|
|
||||||
};
|
|
||||||
homeCursorPath = import (configPath + /homeCursor.nix) {
|
|
||||||
inherit
|
|
||||||
flake
|
|
||||||
pkgs
|
|
||||||
;
|
|
||||||
};
|
|
||||||
gtk3Path = import (configPath + /gtk3.nix);
|
|
||||||
in
|
|
||||||
{
|
|
||||||
gtk = {
|
|
||||||
enable = true;
|
|
||||||
gtk3 = gtk3Path;
|
|
||||||
cursorTheme = cursorThemePath;
|
|
||||||
iconTheme = iconThemePath;
|
|
||||||
theme = themePath;
|
|
||||||
};
|
|
||||||
home.pointerCursor = homeCursorPath;
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue