adding pantalaimon
This commit is contained in:
parent
d7e9409d8c
commit
ce80f145be
|
@ -76,7 +76,13 @@
|
||||||
|
|
||||||
pkgsForSystem = import nixpkgs {
|
pkgsForSystem = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config = { allowUnfree = true; };
|
|
||||||
|
config = {
|
||||||
|
allowUnfree = true;
|
||||||
|
permittedInsecurePackages = [
|
||||||
|
"olm-3.2.16"
|
||||||
|
];
|
||||||
|
};
|
||||||
overlays = [
|
overlays = [
|
||||||
emacs.overlays.default
|
emacs.overlays.default
|
||||||
# rust-overlay.overlays.default
|
# rust-overlay.overlays.default
|
||||||
|
|
|
@ -277,22 +277,22 @@ in
|
||||||
pueue.enable = true;
|
pueue.enable = true;
|
||||||
|
|
||||||
# For matrix clients that don't have e2ee
|
# For matrix clients that don't have e2ee
|
||||||
# pantalaimon = {
|
pantalaimon = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# settings = {
|
settings = {
|
||||||
# Default = {
|
Default = {
|
||||||
# LogLevel = "Debug";
|
LogLevel = "Debug";
|
||||||
# SSL = true;
|
SSL = true;
|
||||||
# };
|
};
|
||||||
# local-matrix = {
|
local-matrix = {
|
||||||
# Homeserver = "https://matrix.tfcconnection.org";
|
Homeserver = "https://matrix.tfcconnection.org";
|
||||||
# ListenAddress = "127.0.0.1";
|
ListenAddress = "127.0.0.1";
|
||||||
# ListenPort = 8008;
|
ListenPort = 8008;
|
||||||
# # SSL = true;
|
# SSL = true;
|
||||||
# # IgnoreVerification = true;
|
# IgnoreVerification = true;
|
||||||
# };
|
};
|
||||||
# };
|
};
|
||||||
# };
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# stylix = {
|
# stylix = {
|
||||||
|
@ -398,7 +398,7 @@ in
|
||||||
name = "Papirus-Dark";
|
name = "Papirus-Dark";
|
||||||
package = pkgs.papirus-icon-theme;
|
package = pkgs.papirus-icon-theme;
|
||||||
};
|
};
|
||||||
theme.name = "Breeze";
|
# theme.name = "Breeze";
|
||||||
gtk3.extraConfig = {
|
gtk3.extraConfig = {
|
||||||
gtk-application-prefer-dark-theme = true;
|
gtk-application-prefer-dark-theme = true;
|
||||||
gtk-button-images = true;
|
gtk-button-images = true;
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
sandbox = "relaxed";
|
sandbox = "relaxed";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = pkgs.linuxPackages_zen;
|
kernelPackages = pkgs.linuxPackages_zen;
|
||||||
|
|
Loading…
Reference in a new issue