Compare commits

...

4 commits

Author SHA1 Message Date
c0475718f5
gtk: use jost
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
2023-06-23 22:27:19 -04:00
d63d0d5cda
networking: formatting 2023-06-23 22:27:06 -04:00
593f02b740
openssh: force pubkey auth 2023-06-23 22:27:00 -04:00
680ab1a6f9
home: formatting 2023-06-23 22:26:52 -04:00
7 changed files with 13 additions and 6 deletions

View file

@ -9,6 +9,7 @@
gtk = {
enable = true;
font.name = "jost";
theme = {
name = "Catppuccin-Mocha-Standard-Pink-Dark";
package = pkgs.catppuccin-gtk.override {

View file

@ -1,5 +1,7 @@
{...}: {
_: {
services.redis.servers.default = {
enable = true;
openFirewall = true;
port = 6379;
};
}

View file

@ -1,4 +1,4 @@
{...}: {
_: {
virtualisation.oci-containers.containers.dashdot = {
image = "mauricenino/dashdot:sha-207b2df";
ports = [

View file

@ -1,4 +1,4 @@
{...}: {
_: {
virtualisation.oci-containers.containers.dashdot = {
image = "mauricenino/dashdot:sha-207b2df";
ports = [

View file

@ -1,4 +1,4 @@
{...}: {
_: {
virtualisation.oci-containers.containers.homarr = {
image = "ghcr.io/ajnart/homarr:0.12.3";
ports = [

View file

@ -1,4 +1,8 @@
_: {
{
pkgs,
config,
...
}: {
networking = {
networkmanager.enable = true;
nameservers = ["192.168.1.221"];

View file

@ -4,7 +4,7 @@
settings = {
KbdInteractiveAuthentication = false;
PasswordAuthentication = lib.mkForce false;
PubkeyAuthentication = true;
PubkeyAuthentication = lib.mkForce true;
PermitRootLogin = lib.mkForce "no";
StreamLocalBindUnlink = "yes";
GatewayPorts = "clientspecified";