Update to 23.05

This commit is contained in:
Aaron Honeycutt 2023-06-06 13:35:40 +00:00
parent 6537b4b7bd
commit bf10990db8

View file

@ -2,7 +2,7 @@
description = "Sovereign";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
home-manager = {
url = "github:nix-community/home-manager/release-22.11";
inputs.nixpkgs.follows = "nixpkgs";
@ -98,14 +98,13 @@
security.acme.acceptTerms = true;
security.acme.defaults.email = "aaronhoneycutt@proton.me";
services.openssh = { # 22.11
# services.openssh.settings = {
services.openssh = {
enable = true;
permitRootLogin = "no";
settings.PermitRootLogin = "no";
};
system = {
stateVersion = "22.11";
stateVersion = "23.05";
autoUpgrade.enable = true;
};
})