valkyrie & materusPC: changes to home, add acme to valkyrie

This commit is contained in:
2023-06-07 17:15:29 +02:00
parent 51472e812a
commit 25e2d084c3
7 changed files with 45 additions and 9 deletions
+15
View File
@@ -118,5 +118,20 @@
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment?
security.acme.acceptTerms = true;
security.acme.defaults.email = "materus+acme@podkos.pl";
security.acme.certs."materus.pl" = {
domain = "materus.pl";
extraDomainNames = ["*.materus.pl"];
dnsProvider = "ovh";
credentialsFile = "/materus/config/valkyrie/certs.secret";
};
}
+5 -3
View File
@@ -2,13 +2,15 @@
{
home.stateVersion = "23.05";
home.homeDirectory = "/home/materus";
materus.profile = {
fonts.enable = false;
nixpkgs.enable = true;
nixpkgs.enable = false;
enableDesktop = false;
enableTerminal = true;
enableTerminal = false;
enableTerminalExtra = false;
enableNixDevel = false;
fish.enable = true;
bash.enable = true;
};
}