mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
Compare commits
3 commits
30b0058809
...
d7d4f2e523
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d7d4f2e523 | ||
![]() |
8e19864031 | ||
![]() |
27bb0b84d9 |
3 changed files with 154 additions and 0 deletions
|
@ -36,6 +36,14 @@ These files are for the systems themselves such as my custom desktop, Thinkpad X
|
||||||
| `peebee` | PinePhone | 📱 | `aarch64-linux` |
|
| `peebee` | PinePhone | 📱 | `aarch64-linux` |
|
||||||
| `lexi` | OnePlus 6T | 📱 | `aarch64-linux` |
|
| `lexi` | OnePlus 6T | 📱 | `aarch64-linux` |
|
||||||
|
|
||||||
|
## Homelab Nix files: (nix-configs/homelab)
|
||||||
|
|
||||||
|
| Service | Replacement |
|
||||||
|
| ---------:| -----------:|
|
||||||
|
| Immich | Google Photos |
|
||||||
|
| Navidrome | Google Music |
|
||||||
|
| Jellyfin | Netflix |
|
||||||
|
|
||||||
### Desktop Nix files: (nix-configs/desktops/)
|
### Desktop Nix files: (nix-configs/desktops/)
|
||||||
|
|
||||||
These files are for the desktops (DE or WM) that I use at times.
|
These files are for the desktops (DE or WM) that I use at times.
|
||||||
|
|
0
homelab/glance/.gitkeep
Normal file
0
homelab/glance/.gitkeep
Normal file
146
homelab/glance/default.nix
Normal file
146
homelab/glance/default.nix
Normal file
|
@ -0,0 +1,146 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.glance = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
settings = {
|
||||||
|
server = {
|
||||||
|
host = "0.0.0.0";
|
||||||
|
port = 5678;
|
||||||
|
};
|
||||||
|
theme = {
|
||||||
|
background-color = "270 5 17";
|
||||||
|
primary-color = "21 97 85";
|
||||||
|
negative-color = "358 100 68";
|
||||||
|
contrast-multiplier = 1.2;
|
||||||
|
};
|
||||||
|
pages = [{
|
||||||
|
name = "Home";
|
||||||
|
hide-desktop-navigation = true;
|
||||||
|
center-vertically = true;
|
||||||
|
columns = [
|
||||||
|
{
|
||||||
|
size = "small";
|
||||||
|
widgets = [
|
||||||
|
{
|
||||||
|
type = "clock";
|
||||||
|
hour-format = "24h";
|
||||||
|
timezones = [
|
||||||
|
{
|
||||||
|
timezone = "Asia/Tokyo";
|
||||||
|
label = "Tokyo";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
timezone = "Europe/Dublin";
|
||||||
|
label = "Dublin";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type = "calendar";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type = "weather";
|
||||||
|
units = "imperial";
|
||||||
|
hour-format = "24h";
|
||||||
|
location = "Aurora, Colorado, United States";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
size = "full";
|
||||||
|
widgets = [
|
||||||
|
{
|
||||||
|
type = "search";
|
||||||
|
search-engine = "duckduckgo";
|
||||||
|
new-tab = true;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type = "bookmarks";
|
||||||
|
groups = [
|
||||||
|
{
|
||||||
|
title = "Media";
|
||||||
|
color = "17 100 74";
|
||||||
|
links = [
|
||||||
|
{
|
||||||
|
title = "Music";
|
||||||
|
url = "https://music.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Videos";
|
||||||
|
url = "https://videos.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Photos";
|
||||||
|
url = "https://photos.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Audiobooks";
|
||||||
|
url = "https://audiobookshelf.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Books & Comics";
|
||||||
|
url = "https://books.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Infrastructure";
|
||||||
|
color = "355 65 65";
|
||||||
|
links = [
|
||||||
|
{
|
||||||
|
title = "Forgejo";
|
||||||
|
url = "https://git.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Knowledge";
|
||||||
|
color = "240 19 85";
|
||||||
|
links = [
|
||||||
|
{
|
||||||
|
title = "Personal Wiki";
|
||||||
|
url = "https://wiki.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type = "monitor";
|
||||||
|
title = "Services";
|
||||||
|
sites = [
|
||||||
|
{
|
||||||
|
title = "Navidrome";
|
||||||
|
url = "https://music.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Jellyfin";
|
||||||
|
url = "https://videos.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Immich";
|
||||||
|
url = "https://photos.ahoneybun.net/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Forgejo";
|
||||||
|
url = "https://git.ahoneybun.net";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Gollum";
|
||||||
|
url = "https://wiki.ahoneybun.net";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Wastebin";
|
||||||
|
url = "https://bin.ahoneybun.net";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue