mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
feat: added regreet
This commit is contained in:
parent
aac47aa93b
commit
3b455e6133
21 changed files with 72 additions and 61 deletions
0
asdasd.css
Normal file → Executable file
0
asdasd.css
Normal file → Executable file
0
config/themes/palettes/brogrammer/default.nix
Normal file → Executable file
0
config/themes/palettes/brogrammer/default.nix
Normal file → Executable file
0
config/themes/palettes/chalk/default.nix
Normal file → Executable file
0
config/themes/palettes/chalk/default.nix
Normal file → Executable file
0
config/themes/palettes/deep-oceanic-next/default.nix
Normal file → Executable file
0
config/themes/palettes/deep-oceanic-next/default.nix
Normal file → Executable file
0
config/themes/palettes/espresso/default.nix
Normal file → Executable file
0
config/themes/palettes/espresso/default.nix
Normal file → Executable file
0
config/themes/palettes/flat/default.nix
Normal file → Executable file
0
config/themes/palettes/flat/default.nix
Normal file → Executable file
0
config/themes/palettes/framer/default.nix
Normal file → Executable file
0
config/themes/palettes/framer/default.nix
Normal file → Executable file
0
config/themes/palettes/github/default.nix
Normal file → Executable file
0
config/themes/palettes/github/default.nix
Normal file → Executable file
0
config/themes/palettes/hardcore/default.nix
Normal file → Executable file
0
config/themes/palettes/hardcore/default.nix
Normal file → Executable file
0
config/themes/palettes/one/black/default.nix
Normal file → Executable file
0
config/themes/palettes/one/black/default.nix
Normal file → Executable file
0
config/themes/palettes/one/dark/default.nix
Normal file → Executable file
0
config/themes/palettes/one/dark/default.nix
Normal file → Executable file
0
config/themes/palettes/one/light/default.nix
Normal file → Executable file
0
config/themes/palettes/one/light/default.nix
Normal file → Executable file
0
config/themes/palettes/sparky/default.nix
Normal file → Executable file
0
config/themes/palettes/sparky/default.nix
Normal file → Executable file
|
@ -1,19 +1,16 @@
|
|||
{flake, ...}: let
|
||||
inherit
|
||||
(flake.config.people)
|
||||
{ flake, ... }:
|
||||
let
|
||||
inherit (flake.config.people)
|
||||
user0
|
||||
;
|
||||
inherit
|
||||
(flake.config.people.users.${user0})
|
||||
inherit (flake.config.people.users.${user0})
|
||||
aliases
|
||||
;
|
||||
inherit
|
||||
(flake.config.machines.devices)
|
||||
inherit (flake.config.machines.devices)
|
||||
synology
|
||||
server
|
||||
;
|
||||
inherit
|
||||
(flake.config.services)
|
||||
inherit (flake.config.services)
|
||||
instances
|
||||
;
|
||||
|
||||
|
@ -42,7 +39,8 @@
|
|||
"thing"
|
||||
instances.synology.name
|
||||
];
|
||||
in {
|
||||
in
|
||||
{
|
||||
name = "Self Hosted";
|
||||
toolbar = false;
|
||||
bookmarks = [
|
||||
|
@ -58,7 +56,7 @@ in {
|
|||
}
|
||||
{
|
||||
name = instances.forgejo.label;
|
||||
url = "https://${instances.forgejo.subdomain}.${instances.web.domains.url0}";
|
||||
url = "https://${instances.forgejo.subdomain}.${instances.web.domains.url3}";
|
||||
tags = [
|
||||
instances.forgejo.name
|
||||
"forge"
|
||||
|
@ -166,21 +164,17 @@ in {
|
|||
{
|
||||
name = "${instances.syncthing.label} (${instances.synology.label})";
|
||||
url = "http://${synology.ip.address0}:${toString instances.syncthing.ports.port0}";
|
||||
tags =
|
||||
[
|
||||
tags = [
|
||||
"synology"
|
||||
]
|
||||
++ syncthingTags;
|
||||
] ++ syncthingTags;
|
||||
keyword = instances.syncthing.label;
|
||||
}
|
||||
{
|
||||
name = "${instances.syncthing.label} (Desktop)";
|
||||
url = "http://localhost:${toString instances.syncthing.ports.port0}";
|
||||
tags =
|
||||
[
|
||||
tags = [
|
||||
"desktop"
|
||||
]
|
||||
++ syncthingTags;
|
||||
] ++ syncthingTags;
|
||||
keyword = instances.syncthing.label;
|
||||
}
|
||||
{
|
||||
|
|
|
@ -12,7 +12,8 @@ let
|
|||
"tube"
|
||||
"yt"
|
||||
];
|
||||
in {
|
||||
in
|
||||
{
|
||||
name = "Social Media";
|
||||
toolbar = false;
|
||||
bookmarks = [
|
||||
|
@ -39,6 +40,16 @@ in {
|
|||
tags = discordTags;
|
||||
keyword = "Discord";
|
||||
}
|
||||
{
|
||||
name = "Facebook";
|
||||
url = "https://www.facebook.com/";
|
||||
tags = [
|
||||
"facebook"
|
||||
"face"
|
||||
"book"
|
||||
];
|
||||
keyword = "Face";
|
||||
}
|
||||
{
|
||||
name = "Gmail";
|
||||
url = "https://mail.google.com/mail/u/0/#inbox";
|
||||
|
@ -156,11 +167,9 @@ in {
|
|||
{
|
||||
name = "YouTube Studio";
|
||||
url = "https://studio.youtube.com/channel/UCy9yYcDx2XuVVgcWLJJDoxw";
|
||||
tags =
|
||||
[
|
||||
tags = [
|
||||
"studio"
|
||||
]
|
||||
++ youtubeTags;
|
||||
] ++ youtubeTags;
|
||||
keyword = "Studio";
|
||||
}
|
||||
{
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{pkgs, ...}:
|
||||
{ pkgs, ... }:
|
||||
builtins.attrValues {
|
||||
inherit
|
||||
(pkgs)
|
||||
inherit (pkgs)
|
||||
nil
|
||||
nixfmt-rfc-style
|
||||
nixd
|
||||
|
|
|
@ -8,7 +8,7 @@ in
|
|||
alternate_scroll = "off";
|
||||
blinking = "off";
|
||||
copy_on_select = true;
|
||||
dock = "right";
|
||||
dock = "bottom";
|
||||
detect_venv = {
|
||||
on = {
|
||||
directories = [
|
||||
|
|
|
@ -67,11 +67,19 @@ in
|
|||
};
|
||||
|
||||
hyprland = {
|
||||
imports = builtins.attrValues { inherit (modules) hyprland; };
|
||||
imports = builtins.attrValues {
|
||||
inherit (modules)
|
||||
hyprland
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
server = {
|
||||
imports = builtins.attrValues { inherit (modules) services; };
|
||||
imports = builtins.attrValues {
|
||||
inherit (modules)
|
||||
services
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
shared = {
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
imports =
|
||||
map
|
||||
(file: ./${file}.nix)
|
||||
[
|
||||
imports = map (file: ./${file}.nix) [
|
||||
"geoclue2"
|
||||
"greetd"
|
||||
"network"
|
||||
"hypridle"
|
||||
"hyprland"
|
||||
"hyprlock"
|
||||
# "regreet"
|
||||
"regreet"
|
||||
"swaylock"
|
||||
"thunar"
|
||||
"wayland"
|
||||
|
|
|
@ -13,18 +13,18 @@ in
|
|||
programs.regreet = {
|
||||
enable = true;
|
||||
package = pkgs.greetd.regreet;
|
||||
settings = {
|
||||
appearance = {
|
||||
greeting_msg = "Back for more, I see.";
|
||||
};
|
||||
GTK = {
|
||||
application_prefer_dark_theme = true;
|
||||
cursor_theme_name = lib.mkForce "catppuccin-macchiato-dark-cursors";
|
||||
font_name = lib.mkForce "${font.name} ${font.size.desktop}";
|
||||
icon_theme_name = lib.mkForce "Papirus-Dark";
|
||||
theme_name = lib.mkForce "catppuccin-macchiato-mauve-compact";
|
||||
};
|
||||
};
|
||||
# settings = {
|
||||
# appearance = {
|
||||
# greeting_msg = "Back for more, I see.";
|
||||
# };
|
||||
# GTK = {
|
||||
# application_prefer_dark_theme = true;
|
||||
# cursor_theme_name = lib.mkForce "catppuccin-macchiato-dark-cursors";
|
||||
# font_name = lib.mkForce "${font.name} ${font.size.desktop}";
|
||||
# icon_theme_name = lib.mkForce "Papirus-Dark";
|
||||
# theme_name = lib.mkForce "catppuccin-macchiato-mauve-compact";
|
||||
# };
|
||||
# };
|
||||
# theme = {
|
||||
# name = "catppuccin-macchiato-mauve-compact";
|
||||
# package = pkgs.catppuccin-gtk.override {
|
||||
|
|
|
@ -1 +1,5 @@
|
|||
{ programs.nh = { enable = true; }; }
|
||||
{
|
||||
programs.nh = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue