diff options
author | sefidel <contact@sefidel.net> | 2023-03-08 20:21:31 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-03-08 20:21:31 +0900 |
commit | 323e6a6e25fb2daa2c62b006dae1662e21cb9787 (patch) | |
tree | 2a60d73de547eb8cee3feb43ddba983655bd1d03 /home/profiles | |
parent | 5104901343761bad8a1c1975b8165342a031e6c2 (diff) | |
download | nixrc-323e6a6e25fb2daa2c62b006dae1662e21cb9787.tar.gz nixrc-323e6a6e25fb2daa2c62b006dae1662e21cb9787.zip |
feat(home/communication): element-desktop: show labs settings
Diffstat (limited to 'home/profiles')
-rw-r--r-- | home/profiles/communication/default.nix | 2 | ||||
-rw-r--r-- | home/profiles/communication/element-config.nix | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/home/profiles/communication/default.nix b/home/profiles/communication/default.nix index a58f53c..03f1f3c 100644 --- a/home/profiles/communication/default.nix +++ b/home/profiles/communication/default.nix @@ -320,6 +320,8 @@ in }; }) ]; + + xdg.configFile."Element/config.json".text = builtins.toJSON (import ./element-config.nix); } ]); } diff --git a/home/profiles/communication/element-config.nix b/home/profiles/communication/element-config.nix new file mode 100644 index 0000000..1846de8 --- /dev/null +++ b/home/profiles/communication/element-config.nix @@ -0,0 +1,3 @@ +{ + show_labs_settings = true; +} |