Upgrade to 22.05
This commit is contained in:
parent
8e3f28bc31
commit
2eae0e5ebf
|
@ -2,10 +2,10 @@
|
||||||
description = "Mmmmmh, Spaghetti™";
|
description = "Mmmmmh, Spaghetti™";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "nixpkgs/nixos-21.11";
|
nixpkgs.url = "nixpkgs/nixos-22.05";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-21.11";
|
url = "github:nix-community/home-manager/release-22.05";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
};
|
};
|
||||||
username = "h7x4";
|
username = "h7x4";
|
||||||
homeDirectory = "/home/h7x4";
|
homeDirectory = "/home/h7x4";
|
||||||
stateVersion = "21.11";
|
stateVersion = "22.05";
|
||||||
configuration = {
|
configuration = {
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
|
|
2
home.nix
2
home.nix
|
@ -39,7 +39,7 @@ in {
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "21.11";
|
stateVersion = "22.05";
|
||||||
username = "h7x4";
|
username = "h7x4";
|
||||||
homeDirectory = "/home/h7x4";
|
homeDirectory = "/home/h7x4";
|
||||||
file = {
|
file = {
|
||||||
|
|
|
@ -115,7 +115,8 @@ in {
|
||||||
liberation_ttf
|
liberation_ttf
|
||||||
migmix
|
migmix
|
||||||
noto-fonts
|
noto-fonts
|
||||||
noto-fonts-cjk
|
noto-fonts-cjk-sans
|
||||||
|
noto-fonts-cjk-serif
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
open-sans
|
open-sans
|
||||||
source-han-sans
|
source-han-sans
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
# TODO: configure synapse to point users to coturn
|
# TODO: configure synapse to point users to coturn
|
||||||
services.matrix-synapse = {
|
services.matrix-synapse = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
settings = {
|
||||||
turn_uris = let
|
turn_uris = let
|
||||||
inherit (config.services.coturn) realm;
|
inherit (config.services.coturn) realm;
|
||||||
p = toString secrets.ports.matrix.default;
|
p = toString secrets.ports.matrix.default;
|
||||||
|
@ -53,14 +54,8 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
# redis.enabled = true;
|
# redis.enabled = true;
|
||||||
|
|
||||||
max_upload_size = "100M";
|
max_upload_size = "100M";
|
||||||
|
};
|
||||||
# settings = {
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.redis.enable = true;
|
services.redis.enable = true;
|
||||||
|
|
Loading…
Reference in New Issue