This commit is contained in:
Till 2026-03-05 22:01:29 +01:00
parent 6f30269e1e
commit 2159780ece
5 changed files with 17 additions and 15 deletions

View file

@ -34,7 +34,7 @@
till = { till = {
imports = [ imports = [
./home/minimal.nix ./home/profiles/minimal.nix
./users/till/home.nix ./users/till/home.nix
]; ];
}; };
@ -42,6 +42,18 @@
}; };
}; };
} }
{
# firefox-addons.config.allowUnfreePredicate = pkg:
# builtins.elem (nixpkgs.lib.getName pkg) [
# "tampermonkey"
# ];
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (nixpkgs.lib.getName pkg) [
"outline"
];
}
]; ];
}; };

View file

@ -6,8 +6,8 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
../system ../../system
../system/web-server ../../system/web-server
../system/mail-server ../../system/mail-server
]; ];
} }

View file

@ -10,5 +10,5 @@
users.users.postfix.extraGroups = [ "opendkim" ]; users.users.postfix.extraGroups = [ "opendkim" ];
services.postfix.config.smtpd_milters = [ "unix:/run/opendkim/opendkim.sock" ]; services.postfix.settings.main.smtpd_milters = [ "unix:/run/opendkim/opendkim.sock" ];
} }

View file

@ -11,6 +11,5 @@
# ./ksh.nix # ./ksh.nix
./ksh-map.nix ./ksh-map.nix
./oopsidenfiy.nix
]; ];
} }

View file

@ -1,9 +0,0 @@
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."oops.t9e.me" = {
forceSSL = true;
enableACME = true;
root = "/var/www/oopsidentify/dist";
};
}