Compare commits

...

7 commits

8 changed files with 34 additions and 32 deletions

View file

@ -1,4 +1,9 @@
{ config, pkgs, lib, ... }:
{
config,
pkgs,
lib,
...
}:
let
cfg = config.luj.programs.kitty;
in
@ -23,7 +28,7 @@ with lib;
name = "FiraCode Nerd Font Mono Reg";
package = with pkgs; (nerdfonts.override { fonts = [ "FiraCode" ]; });
};
theme = "Catppuccin-Mocha";
themeFile = "Catppuccin-Mocha";
};
};

View file

@ -76,10 +76,10 @@
"fetchType": "tarball",
"owner": "nix-community",
"repo": "home-manager",
"branch": "release-24.05",
"revision": "2f23fa308a7c067e52dfcc30a0758f47043ec176",
"url": "https://github.com/nix-community/home-manager/archive/2f23fa308a7c067e52dfcc30a0758f47043ec176.tar.gz",
"hash": "sha256-Vl+WVTJwutXkimwGprnEtXc/s/s8sMuXzqXaspIGlwM="
"branch": "release-24.11",
"revision": "f3111f62a23451114433888902a55cf0692b408d",
"url": "https://github.com/nix-community/home-manager/archive/f3111f62a23451114433888902a55cf0692b408d.tar.gz",
"hash": "sha256-T1e5oceypZu3Q8vzICjv1X/sGs9XfJRMW5OuXHgpB3c="
},
"home-manager-unstable": {
"type": "GitHub",
@ -166,10 +166,10 @@
"fetchType": "tarball",
"owner": "nixos",
"repo": "nixpkgs",
"branch": "nixos-24.05",
"revision": "e8c38b73aeb218e27163376a2d617e61a2ad9b59",
"url": "https://github.com/nixos/nixpkgs/archive/e8c38b73aeb218e27163376a2d617e61a2ad9b59.tar.gz",
"hash": "sha256-df3dJApLPhd11AlueuoN0Q4fHo/hagP75LlM5K1sz9g="
"branch": "nixos-24.11",
"revision": "62c435d93bf046a5396f3016472e8f7c8e2aed65",
"url": "https://github.com/nixos/nixpkgs/archive/62c435d93bf046a5396f3016472e8f7c8e2aed65.tar.gz",
"hash": "sha256-F7thesZPvAMSwjRu0K8uFshTk3ZZSNAsXTIFvXBT+34="
},
"stateless-uptime-kuma": {
"type": "Git",

View file

@ -58,10 +58,8 @@
];
routes = [
{
routeConfig = {
Gateway = "163.172.91.1";
Destination = "0.0.0.0/0";
};
Gateway = "163.172.91.1";
Destination = "0.0.0.0/0";
}
];
dhcpV6Config = {

View file

@ -64,11 +64,12 @@
database.createLocally = true;
database.passwordFile = "/run/agenix/keycloak-db";
settings = {
hostname = "auth.julienmalka.me";
hostname = "https://auth.julienmalka.me";
hostname-admin-url = "https://auth.julienmalka.me";
http-port = 8080;
hostname-strict-backchannel = true;
proxy = "edge";
hostname-backchannel-dynamic = true;
proxy-headers = "forwarded";
http-enabled = true;
};
themes = {
keywind = pkgs.keycloak-keywind;

View file

@ -59,12 +59,10 @@
};
wireguardPeers = [
{
wireguardPeerConfig = {
PublicKey = "oYsN1Qy+a7dwVOKapN5s5KJOmhSflLHZqh+GLMeNpHw=";
AllowedIPs = [ "0.0.0.0/0" ];
Endpoint = "[${lib.snowfield.akhaten.ips.public.ipv6}]:51821";
PersistentKeepalive = 25;
};
PublicKey = "oYsN1Qy+a7dwVOKapN5s5KJOmhSflLHZqh+GLMeNpHw=";
AllowedIPs = [ "0.0.0.0/0" ];
Endpoint = "[${lib.snowfield.akhaten.ips.public.ipv6}]:51821";
PersistentKeepalive = 25;
}
];
};
@ -73,16 +71,14 @@
matchConfig.Name = "wg0";
addresses = [
{
addressConfig.Address = "10.100.45.2/24";
addressConfig.AddPrefixRoute = false;
Address = "10.100.45.2/24";
AddPrefixRoute = false;
}
];
routes = [
{
routeConfig = {
Gateway = "10.100.45.1";
Destination = "10.100.45.0/24";
};
Gateway = "10.100.45.1";
Destination = "10.100.45.0/24";
}
];
DHCP = "no";

View file

@ -33,7 +33,7 @@
systemd.network.networks."10-wan" = {
matchConfig.Name = "enp0s3";
DHCP = "ipv4";
addresses = [ { addressConfig.Address = "2603:c027:c001:89aa:aad9:34b3:f3c9:924f"; } ];
addresses = [ { Address = "2603:c027:c001:89aa:aad9:34b3:f3c9:924f"; } ];
linkConfig.RequiredForOnline = "routable";
};

View file

@ -38,10 +38,10 @@
luj.nginx.enable = true;
services.mysql.enable = true;
services.mysql.package = pkgs.mysql;
services.mysql.package = pkgs.mariadb;
services.nextcloud = {
enable = true;
package = pkgs.nextcloud29;
package = pkgs.nextcloud30;
https = true;
hostName = "nuage.malka.family";
settings.overwriteProtocol = "https";

View file

@ -77,4 +77,6 @@ buildGoModule rec {
vendorHash = "sha256-U1vMIig2/mncH07o1AZ2mUor5lq5WmNsfY/X2GbSGQA=";
meta.mainProgram = "readeck";
}