Compare commits
2 commits
e50f72be6a
...
eb0c6fc3b0
| Author | SHA1 | Date | |
|---|---|---|---|
| eb0c6fc3b0 | |||
| 5391938b64 |
4 changed files with 29 additions and 5 deletions
|
|
@ -65,7 +65,8 @@
|
|||
nixOnDroidConfigurations.default = inputs.nix-on-droid.lib.nixOnDroidConfiguration {
|
||||
modules = [
|
||||
./hosts/redmi
|
||||
{ nix.registry.nixpkgs.flake = nixpkgs; } { nix.nixPath = [ "nixpkgs=${nixpkgs}" ]; }
|
||||
{ nix.registry.nixpkgs.flake = nixpkgs; }
|
||||
{ nix.nixPath = [ "nixpkgs=${nixpkgs}" ]; }
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -189,6 +189,20 @@ in {
|
|||
root = "/srv/www/failco.de";
|
||||
serverAliases = [ "www.failco.de" "mail.failco.de" ];
|
||||
};
|
||||
# "jakalx.net" = {
|
||||
# forceSSL = true;
|
||||
# enableACME = true;
|
||||
# root = "/srv/www/jakalx.net";
|
||||
# serverAliases = [ "www.jakalx.net" ];
|
||||
# };
|
||||
};
|
||||
|
||||
services.gitea = {
|
||||
enable = true;
|
||||
database.type = "sqlite3";
|
||||
lfs.enable = true;
|
||||
httpAddress = "127.0.0.1";
|
||||
httpPort = 3000;
|
||||
};
|
||||
|
||||
services.fail2ban = {
|
||||
|
|
@ -226,15 +240,15 @@ in {
|
|||
mailserver = {
|
||||
enable = true;
|
||||
fqdn = "thrall.failco.de";
|
||||
domains = [ "failco.de" ];
|
||||
domains = [ "failco.de" "jakalx.net" ];
|
||||
|
||||
loginAccounts = {
|
||||
"me@failco.de" = {
|
||||
hashedPasswordFile = config.age.secrets.mailPass.path;
|
||||
|
||||
aliases = [ "jakalx@failco.de" ];
|
||||
aliases = [ "lx@failco.de" "alex@failco.de" ];
|
||||
|
||||
catchAll = [ "failco.de" ];
|
||||
catchAll = [ "failco.de" "jakalx.net" ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -14,6 +14,8 @@
|
|||
fd
|
||||
fzf
|
||||
bat
|
||||
lshw
|
||||
pciutils
|
||||
];
|
||||
|
||||
networking.firewall.enable = true;
|
||||
|
|
|
|||
|
|
@ -17,12 +17,19 @@ in
|
|||
username = "alex";
|
||||
homeDirectory = "/home/alex";
|
||||
stateVersion = "22.11";
|
||||
|
||||
packages = with pkgs; [
|
||||
lutris
|
||||
discord
|
||||
mosh
|
||||
];
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Alexander Kobjolke";
|
||||
userEmail = "me@failco.de";
|
||||
};
|
||||
|
||||
# do not show home-manager notifications
|
||||
news.display = "silent";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue