mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
chore: trying gnome again
This commit is contained in:
parent
2ede55a7ee
commit
616c51118f
105 changed files with 101 additions and 15 deletions
|
@ -64,16 +64,16 @@ in
|
|||
];
|
||||
keyword = instances.forgejo.label;
|
||||
}
|
||||
{
|
||||
name = instances.hledger.label;
|
||||
url = "http://localhost.${builtins.toString instances.hledger.ports.port0}";
|
||||
tags = [
|
||||
instances.hledger.name
|
||||
"hledger"
|
||||
"finances"
|
||||
];
|
||||
keyword = instances.hledger.label;
|
||||
}
|
||||
# {
|
||||
# name = instances.hledger.label;
|
||||
# url = "http://localhost.${builtins.toString instances.hledger.ports.port0}";
|
||||
# tags = [
|
||||
# instances.hledger.name
|
||||
# "hledger"
|
||||
# "finances"
|
||||
# ];
|
||||
# keyword = instances.hledger.label;
|
||||
# }
|
||||
{
|
||||
name = "${instances.jellyfin.label} (Internet)";
|
||||
url = "https://${instances.jellyfin.name}.${instances.web.domains.url0}";
|
||||
|
|
|
@ -2,9 +2,18 @@
|
|||
name = "Tools";
|
||||
toolbar = false;
|
||||
bookmarks = [
|
||||
{
|
||||
name = "Mullvad";
|
||||
url = "https://mullvad.net";
|
||||
tags = [
|
||||
"mullvad"
|
||||
"vpn"
|
||||
];
|
||||
keyword = "Mull";
|
||||
}
|
||||
{
|
||||
name = "Cyanophage Layout Analyzer";
|
||||
url = "https://cyanophage.github.io/";
|
||||
url = "https://cyanophage.github.io";
|
||||
tags = [
|
||||
"cyanophage"
|
||||
"keyboard"
|
||||
|
@ -12,6 +21,15 @@
|
|||
];
|
||||
keyword = "Layout";
|
||||
}
|
||||
{
|
||||
name = "Smtp2Go";
|
||||
url = "https://app-us.smtp2go.com/dashboard/main";
|
||||
tags = [
|
||||
"smtp"
|
||||
"email"
|
||||
];
|
||||
keyword = "Smtp";
|
||||
}
|
||||
{
|
||||
name = "Oryx";
|
||||
url = "https://configure.zsa.io/moonlander";
|
||||
|
|
0
home/modules/gui/apps/media/llms/alpaca/default.nix
Normal file → Executable file
0
home/modules/gui/apps/media/llms/alpaca/default.nix
Normal file → Executable file
13
home/modules/gui/apps/tools/gtk/config/cursorTheme.nix
Executable file
13
home/modules/gui/apps/tools/gtk/config/cursorTheme.nix
Executable file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
pkgs,
|
||||
flake,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (flake.config.aesthetics.themes) cursor;
|
||||
in
|
||||
{
|
||||
name = "catppuccin-macchiato-dark-cursors";
|
||||
package = pkgs.catppuccin-cursors.macchiatoDark;
|
||||
size = cursor.size;
|
||||
}
|
5
home/modules/gui/apps/tools/gtk/config/gtk3.nix
Executable file
5
home/modules/gui/apps/tools/gtk/config/gtk3.nix
Executable file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
extraConfig = {
|
||||
gtk-application-prefer-dark-theme = true;
|
||||
};
|
||||
}
|
13
home/modules/gui/apps/tools/gtk/config/homeCursor.nix
Executable file
13
home/modules/gui/apps/tools/gtk/config/homeCursor.nix
Executable file
|
@ -0,0 +1,13 @@
|
|||
{ 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;
|
||||
}
|
8
home/modules/gui/apps/tools/gtk/config/iconTheme.nix
Executable file
8
home/modules/gui/apps/tools/gtk/config/iconTheme.nix
Executable file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
package = pkgs.catppuccin-papirus-folders.override {
|
||||
flavor = "macchiato";
|
||||
accent = "mauve";
|
||||
};
|
||||
name = "Papirus-Dark";
|
||||
}
|
11
home/modules/gui/apps/tools/gtk/config/theme.nix
Executable file
11
home/modules/gui/apps/tools/gtk/config/theme.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
package = pkgs.catppuccin-gtk.override {
|
||||
size = "compact";
|
||||
variant = "macchiato";
|
||||
accents = [
|
||||
"mauve"
|
||||
];
|
||||
};
|
||||
name = "catppuccin-macchiato-mauve-compact";
|
||||
}
|
37
home/modules/gui/apps/tools/gtk/default.nix
Executable file
37
home/modules/gui/apps/tools/gtk/default.nix
Executable file
|
@ -0,0 +1,37 @@
|
|||
{ 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;
|
||||
}
|
13
home/modules/gui/apps/tools/mullvad/default.nix
Executable file
13
home/modules/gui/apps/tools/mullvad/default.nix
Executable file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
# mullvad
|
||||
mullvad-closest
|
||||
mullvad-vpn
|
||||
;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue