Compare commits
4 commits
55a3526bf2
...
c0475718f5
Author | SHA1 | Date | |
---|---|---|---|
c0475718f5 | |||
d63d0d5cda | |||
593f02b740 | |||
680ab1a6f9 |
7 changed files with 13 additions and 6 deletions
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
font.name = "jost";
|
||||||
theme = {
|
theme = {
|
||||||
name = "Catppuccin-Mocha-Standard-Pink-Dark";
|
name = "Catppuccin-Mocha-Standard-Pink-Dark";
|
||||||
package = pkgs.catppuccin-gtk.override {
|
package = pkgs.catppuccin-gtk.override {
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{...}: {
|
_: {
|
||||||
services.redis.servers.default = {
|
services.redis.servers.default = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
port = 6379;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{...}: {
|
_: {
|
||||||
virtualisation.oci-containers.containers.dashdot = {
|
virtualisation.oci-containers.containers.dashdot = {
|
||||||
image = "mauricenino/dashdot:sha-207b2df";
|
image = "mauricenino/dashdot:sha-207b2df";
|
||||||
ports = [
|
ports = [
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{...}: {
|
_: {
|
||||||
virtualisation.oci-containers.containers.dashdot = {
|
virtualisation.oci-containers.containers.dashdot = {
|
||||||
image = "mauricenino/dashdot:sha-207b2df";
|
image = "mauricenino/dashdot:sha-207b2df";
|
||||||
ports = [
|
ports = [
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{...}: {
|
_: {
|
||||||
virtualisation.oci-containers.containers.homarr = {
|
virtualisation.oci-containers.containers.homarr = {
|
||||||
image = "ghcr.io/ajnart/homarr:0.12.3";
|
image = "ghcr.io/ajnart/homarr:0.12.3";
|
||||||
ports = [
|
ports = [
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
_: {
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
networking = {
|
networking = {
|
||||||
networkmanager.enable = true;
|
networkmanager.enable = true;
|
||||||
nameservers = ["192.168.1.221"];
|
nameservers = ["192.168.1.221"];
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
KbdInteractiveAuthentication = false;
|
KbdInteractiveAuthentication = false;
|
||||||
PasswordAuthentication = lib.mkForce false;
|
PasswordAuthentication = lib.mkForce false;
|
||||||
PubkeyAuthentication = true;
|
PubkeyAuthentication = lib.mkForce true;
|
||||||
PermitRootLogin = lib.mkForce "no";
|
PermitRootLogin = lib.mkForce "no";
|
||||||
StreamLocalBindUnlink = "yes";
|
StreamLocalBindUnlink = "yes";
|
||||||
GatewayPorts = "clientspecified";
|
GatewayPorts = "clientspecified";
|
||||||
|
|
Loading…
Reference in a new issue