Skip to content

Commit

Permalink
fix(nix): use correct icons in homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
sbulav committed Nov 18, 2024
1 parent b76d2e1 commit 3bc15ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions nix/modules/nixos/containers/homepage/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ in {
}
{
"Adguard" = {
icon = "Adguard";
icon = "adguard-home";
href = "https://adguard.sbulav.ru";
widget = {
type = "adguard";
Expand All @@ -103,7 +103,7 @@ in {
}
{
"Flood" = {
icon = "Flood";
icon = "flood";
href = "https://flood.sbulav.ru";
widget = {
type = "flood";
Expand Down
5 changes: 3 additions & 2 deletions nix/systems/x86_64-linux/serverz/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ in {
# Enable Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.enableContainers = true;

# Suites managed by nix, see suites by home-manager in homes
suites.server.enable = true; # Enables the basics, like neovim, ssh, etc.
Expand Down Expand Up @@ -61,13 +62,13 @@ in {
localAddress = "172.16.64.104";
};
flood = {
enable = true;
enable = false;
host = "flood.sbulav.ru";
hostAddress = "172.16.64.10";
localAddress = "172.16.64.105";
};
nextcloud = {
enable = false;
enable = true;
host = "nextcloud2.sbulav.ru";
hostAddress = "172.16.64.10";
localAddress = "172.16.64.106";
Expand Down

0 comments on commit 3bc15ac

Please sign in to comment.